pub enum Step {
Done(AnalyzeOutcome),
CallTool {
name: String,
arguments_json: String,
tokens_in: u64,
tokens_out: u64,
},
}Expand description
What the model wants next.
Variants§
Done(AnalyzeOutcome)
Final answer produced.
CallTool
Model asked to run a tool; the runtime should execute it and loop.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnsafeUnpin for Step
impl UnwindSafe for Step
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