pub enum LlmEvent {
Thinking(String),
Text(String),
ToolUseStart {
tool_name: String,
tool_id: String,
},
ToolUseDelta {
tool_id: String,
delta: String,
},
ToolUse {
tool_name: String,
tool_id: String,
input: Value,
},
ToolResult {
tool_id: String,
result: String,
},
ToolResultDelta {
tool_id: String,
delta: String,
},
}Variants§
Thinking(String)
Text(String)
ToolUseStart
A tool-use block has begun streaming. tool_id is the call id the
model will reference in its eventual tool_use content block —
chat UIs use it to route subsequent ToolUseDelta chunks and the
final ToolUse finalize event to the correct on-screen block when
multiple tools run in parallel.
ToolUseDelta
Streaming chunk of a tool’s input JSON. tool_id matches the
ToolUseStart it belongs to; with parallel tool calls the model
may interleave deltas from different tools.
ToolUse
ToolResult
ToolResultDelta
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LlmEvent
impl RefUnwindSafe for LlmEvent
impl Send for LlmEvent
impl Sync for LlmEvent
impl Unpin for LlmEvent
impl UnsafeUnpin for LlmEvent
impl UnwindSafe for LlmEvent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.