pub struct IntermediateData {
pub tool_uses: Vec<ToolUseRecord>,
pub intermediate_responses: Vec<String>,
}Expand description
Intermediate data captured during agent execution.
Fields§
§tool_uses: Vec<ToolUseRecord>Tool uses that actually occurred.
intermediate_responses: Vec<String>Intermediate text responses from the model.
Trait Implementations§
Source§impl Clone for IntermediateData
impl Clone for IntermediateData
Source§fn clone(&self) -> IntermediateData
fn clone(&self) -> IntermediateData
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 IntermediateData
impl Debug for IntermediateData
Source§impl<'de> Deserialize<'de> for IntermediateData
impl<'de> Deserialize<'de> for IntermediateData
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 IntermediateData
impl RefUnwindSafe for IntermediateData
impl Send for IntermediateData
impl Sync for IntermediateData
impl Unpin for IntermediateData
impl UnwindSafe for IntermediateData
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