pub struct Decision {
pub reasoning: Option<String>,
pub intent: SemanticUnit,
pub meta: UsageMeta,
}Expand description
A parsed decision containing reasoning and a strict intent.
Fields§
§reasoning: Option<String>Optional reasoning text extracted from the response.
intent: SemanticUnitThe strictly-parsed TDLN intent.
meta: UsageMetaUsage metadata from generation.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Decision
impl RefUnwindSafe for Decision
impl Send for Decision
impl Sync for Decision
impl Unpin for Decision
impl UnwindSafe for Decision
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