pub struct AgentSession {
pub session_id: String,
pub agent_id: AgentId,
pub steps: Vec<ReActStep>,
pub memory_hits: usize,
pub graph_lookups: usize,
pub duration_ms: u64,
}Expand description
The result of a single agent run.
Fields§
§session_id: StringStable unique identifier for this session (UUID v4 string).
agent_id: AgentIdThe agent ID used for this session.
steps: Vec<ReActStep>All ReAct steps executed during the session.
memory_hits: usizeNumber of episodic memory retrievals made during the session.
graph_lookups: usizeNumber of graph lookups made during the session.
duration_ms: u64Wall-clock duration of the session in milliseconds.
Implementations§
Source§impl AgentSession
impl AgentSession
Sourcepub fn step_count(&self) -> usize
pub fn step_count(&self) -> usize
Return the number of steps in the session.
Trait Implementations§
Source§impl Clone for AgentSession
impl Clone for AgentSession
Source§fn clone(&self) -> AgentSession
fn clone(&self) -> AgentSession
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 AgentSession
impl Debug for AgentSession
Source§impl<'de> Deserialize<'de> for AgentSession
impl<'de> Deserialize<'de> for AgentSession
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 AgentSession
impl RefUnwindSafe for AgentSession
impl Send for AgentSession
impl Sync for AgentSession
impl Unpin for AgentSession
impl UnsafeUnpin for AgentSession
impl UnwindSafe for AgentSession
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