pub struct AgentFinish {
pub return_values: Map<String, Value>,
pub log: String,
}Expand description
The final result from an agent.
Fields§
§return_values: Map<String, Value>The final output.
log: StringLog of reasoning.
Trait Implementations§
Source§impl Clone for AgentFinish
impl Clone for AgentFinish
Source§fn clone(&self) -> AgentFinish
fn clone(&self) -> AgentFinish
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 moreAuto Trait Implementations§
impl Freeze for AgentFinish
impl RefUnwindSafe for AgentFinish
impl Send for AgentFinish
impl Sync for AgentFinish
impl Unpin for AgentFinish
impl UnsafeUnpin for AgentFinish
impl UnwindSafe for AgentFinish
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