pub struct AgentSession {
pub session_id: Uuid,
pub start_time: DateTime<Utc>,
pub end_time: Option<DateTime<Utc>>,
pub turns: Vec<AgentTurn>,
pub stats: SessionStats,
}Expand description
Complete agent conversation session assembled from normalized events.
Represents a full conversation timeline with the agent, containing all user interactions (turns) and their corresponding agent responses. The session is the highest-level construct for analyzing agent behavior.
Fields§
§session_id: UuidUnique session identifier.
start_time: DateTime<Utc>When the session started (first event timestamp).
end_time: Option<DateTime<Utc>>When the session ended (last event timestamp), if completed.
turns: Vec<AgentTurn>All user-initiated turns in chronological order.
stats: SessionStatsAggregated session statistics.
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<AgentSession, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AgentSession, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for AgentSession
impl Serialize for AgentSession
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl SessionAnalysisExt for AgentSession
impl SessionAnalysisExt for AgentSession
Source§fn compute_turn_metrics(&self, max_context: Option<u32>) -> Vec<TurnMetrics>
fn compute_turn_metrics(&self, max_context: Option<u32>) -> Vec<TurnMetrics>
Compute presentation metrics for all turns
Auto Trait Implementations§
impl Freeze for AgentSession
impl RefUnwindSafe for AgentSession
impl Send for AgentSession
impl Sync for AgentSession
impl Unpin 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