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