pub enum Rationale {
CapacityUnavailable,
PolicyHardStop,
MissingRequiredInformation,
ManagerReviewRequired,
CustomerAcceptedOffer,
}Expand description
Decision choices for rationale in the agent tool workflow; each value routes reviewed source facts to the right queue, draft, or staff gate.
Variants§
Selects capacity unavailable for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
PolicyHardStop
Selects policy hard stop for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
MissingRequiredInformation
Selects missing required information for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
ManagerReviewRequired
Selects manager review required for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
CustomerAcceptedOffer
Selects customer accepted offer for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.