pub enum Resource {
Customer,
Pet,
Reservation,
AvailabilitySnapshot,
DraftReservationUpdate,
}Expand description
Decision choices for resource in the agent tool error surface; each value guides source-grounded routing and review.
Variants§
Customer
Selects customer for the tool error decision model so the app can choose a review, evidence, or draft path without taking live action.
Pet
Selects pet for the tool error decision model so the app can choose a review, evidence, or draft path without taking live action.
Reservation
Selects reservation for the tool error decision model so the app can choose a review, evidence, or draft path without taking live action.
AvailabilitySnapshot
Selects availability snapshot for the tool error decision model so the app can choose a review, evidence, or draft path without taking live action.
DraftReservationUpdate
Selects draft reservation update for the tool error decision model so the app can choose a review, evidence, or draft path without taking live action.