pub struct Run {
pub schema_version: SchemaVersion,
pub id: String,
pub task: Option<String>,
pub outcome: Option<Outcome>,
pub steps: Vec<Step>,
pub edges: Option<Vec<Edge>>,
}Expand description
One agent trajectory: the unit amberfork diff aligns against another.
Fields§
§schema_version: SchemaVersionVersion of the contract this run was written against.
id: StringUnique run id (any string).
task: Option<String>Human label of what the run attempted.
outcome: Option<Outcome>Run-level verdict, if known.
steps: Vec<Step>The trajectory, in order.
edges: Option<Vec<Edge>>Explicit DAG edges. If absent, the graph is derived from parent_idx, else linear.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Run
impl<'de> Deserialize<'de> for Run
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
impl StructuralPartialEq for Run
Auto Trait Implementations§
impl Freeze for Run
impl RefUnwindSafe for Run
impl Send for Run
impl Sync for Run
impl Unpin for Run
impl UnsafeUnpin for Run
impl UnwindSafe for Run
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