pub struct RunConfig {Show 15 fields
pub max_iterations: usize,
pub temperature: f32,
pub context_window: usize,
pub pruning_threshold: f32,
pub planner_depth: usize,
pub debate_rounds: usize,
pub available_tools: Vec<String>,
pub tool_timeout_ms: u64,
pub retry_policy: RetryPolicy,
pub execution_timeout: Duration,
pub failing_tests_patience: usize,
pub no_progress_timeout: Duration,
pub docker_image: String,
pub tools_commit: String,
pub sandbox_limits: SandboxLimits,
}Expand description
Configuration for a benchmark run
Fields§
§max_iterations: usize§temperature: f32§context_window: usize§pruning_threshold: f32§planner_depth: usize§debate_rounds: usize§available_tools: Vec<String>§tool_timeout_ms: u64§retry_policy: RetryPolicy§execution_timeout: Duration§failing_tests_patience: usize§no_progress_timeout: Duration§docker_image: String§tools_commit: String§sandbox_limits: SandboxLimitsImplementations§
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