pub enum Cadence {
Daily,
Hourly,
ManualOnly,
}Expand description
Decision choices for cadence in the agent tool workflow; each value routes reviewed source facts to the right queue, draft, or staff gate.
Variants§
Daily
Selects daily for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
Hourly
Selects hourly for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
ManualOnly
Selects manual only for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Cadence
impl<'de> Deserialize<'de> for Cadence
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
impl Copy for Cadence
impl Eq for Cadence
impl StructuralPartialEq for Cadence
Auto Trait Implementations§
impl Freeze for Cadence
impl RefUnwindSafe for Cadence
impl Send for Cadence
impl Sync for Cadence
impl Unpin for Cadence
impl UnsafeUnpin for Cadence
impl UnwindSafe for Cadence
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