pub enum ReviewReason {
LowConfidence,
AmbiguousDates,
MissingRequiredFields,
}Expand description
Decision choices for review reason in the agent tool workflow; each value routes reviewed source facts to the right queue, draft, or staff gate.
Variants§
LowConfidence
Uses low confidence as source-grounded evidence for the deterministic decision.
AmbiguousDates
Uses ambiguous dates as source-grounded evidence for the deterministic decision.
MissingRequiredFields
Uses missing required fields as source-grounded evidence for the deterministic decision.
Trait Implementations§
Source§impl Clone for ReviewReason
impl Clone for ReviewReason
Source§fn clone(&self) -> ReviewReason
fn clone(&self) -> ReviewReason
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReviewReason
impl Debug for ReviewReason
Source§impl<'de> Deserialize<'de> for ReviewReason
impl<'de> Deserialize<'de> for ReviewReason
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ReviewReason
impl PartialEq for ReviewReason
Source§impl Serialize for ReviewReason
impl Serialize for ReviewReason
impl Copy for ReviewReason
impl Eq for ReviewReason
impl StructuralPartialEq for ReviewReason
Auto Trait Implementations§
impl Freeze for ReviewReason
impl RefUnwindSafe for ReviewReason
impl Send for ReviewReason
impl Sync for ReviewReason
impl Unpin for ReviewReason
impl UnsafeUnpin for ReviewReason
impl UnwindSafe for ReviewReason
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more