pub struct Trajectory {
pub schema_version: String,
pub session_id: String,
pub agent: AtifAgent,
pub steps: Vec<Step>,
pub notes: Option<String>,
pub final_metrics: Option<FinalMetrics>,
pub extra: Option<Value>,
}Expand description
Root-level ATIF trajectory object.
Fields§
§schema_version: StringATIF schema version (e.g., “ATIF-v1.4”).
session_id: StringUnique identifier for the entire agent run.
agent: AtifAgentAgent configuration for this trajectory.
steps: Vec<Step>Ordered interaction steps.
notes: Option<String>Optional developer notes.
final_metrics: Option<FinalMetrics>Aggregate metrics for the full trajectory.
extra: Option<Value>Optional custom root-level metadata.
Trait Implementations§
Source§impl Clone for Trajectory
impl Clone for Trajectory
Source§fn clone(&self) -> Trajectory
fn clone(&self) -> Trajectory
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 Trajectory
impl Debug for Trajectory
Source§impl<'de> Deserialize<'de> for Trajectory
impl<'de> Deserialize<'de> for Trajectory
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 Trajectory
impl RefUnwindSafe for Trajectory
impl Send for Trajectory
impl Sync for Trajectory
impl Unpin for Trajectory
impl UnsafeUnpin for Trajectory
impl UnwindSafe for Trajectory
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