pub struct OrchestratorConfig {
pub max_evolution_iterations: u32,
pub min_evaluation_score: f64,
pub eval_cache_enabled: bool,
}Expand description
Orchestrator configuration (Ouroboros protocol execution).
Fields§
§max_evolution_iterations: u32Maximum evolution iterations (0 = evaluate only, no evolution). Default: 3.
min_evaluation_score: f64Minimum evaluation score for task to be considered passed (0.0–1.0). Default: 0.8.
eval_cache_enabled: boolEnable evaluation result caching.
Trait Implementations§
Source§impl Clone for OrchestratorConfig
impl Clone for OrchestratorConfig
Source§fn clone(&self) -> OrchestratorConfig
fn clone(&self) -> OrchestratorConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OrchestratorConfig
impl Debug for OrchestratorConfig
Source§impl Default for OrchestratorConfig
impl Default for OrchestratorConfig
Source§impl<'de> Deserialize<'de> for OrchestratorConfig
impl<'de> Deserialize<'de> for OrchestratorConfig
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 OrchestratorConfig
impl RefUnwindSafe for OrchestratorConfig
impl Send for OrchestratorConfig
impl Sync for OrchestratorConfig
impl Unpin for OrchestratorConfig
impl UnsafeUnpin for OrchestratorConfig
impl UnwindSafe for OrchestratorConfig
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