pub enum StreamChunk {
Text(String),
ThinkingStart,
ThinkingDelta(String),
ThinkingEnd {
summary: Option<String>,
},
ToolCallStart {
index: usize,
id: String,
name: String,
},
ToolCallDelta {
index: usize,
arguments: String,
},
Done,
Error(String),
}Expand description
A streaming chunk from the model
Variants§
Text(String)
Text content delta
ThinkingStart
Extended thinking started (Anthropic)
ThinkingDelta(String)
Extended thinking content delta (Anthropic)
ThinkingEnd
Extended thinking finished, includes summary if provided
ToolCallStart
Tool call started
ToolCallDelta
Tool call arguments delta
Done
Stream finished
Error(String)
Error occurred
Trait Implementations§
Source§impl Clone for StreamChunk
impl Clone for StreamChunk
Source§fn clone(&self) -> StreamChunk
fn clone(&self) -> StreamChunk
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 StreamChunk
impl Debug for StreamChunk
Source§impl<'de> Deserialize<'de> for StreamChunk
impl<'de> Deserialize<'de> for StreamChunk
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
Auto Trait Implementations§
impl Freeze for StreamChunk
impl RefUnwindSafe for StreamChunk
impl Send for StreamChunk
impl Sync for StreamChunk
impl Unpin for StreamChunk
impl UnsafeUnpin for StreamChunk
impl UnwindSafe for StreamChunk
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