pub struct RunConfig {
pub n: u32,
pub models: Vec<String>,
pub turn_cap: u32,
pub timeout_seconds: u64,
}Expand description
Default run parameters. CLI flags override these.
Fields§
§n: u32Trials per (model, task) cell.
models: Vec<String>Agent models under test.
turn_cap: u32Max agent turns before the trial is judged unfinished. A short cap is enough: correction loops typically decay after the first few turns, and a tight cap keeps cost bounded.
timeout_seconds: u64Per-trial wall-clock timeout.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunConfig
impl<'de> Deserialize<'de> for RunConfig
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 RunConfig
impl RefUnwindSafe for RunConfig
impl Send for RunConfig
impl Sync for RunConfig
impl Unpin for RunConfig
impl UnsafeUnpin for RunConfig
impl UnwindSafe for RunConfig
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