Struct ResolvedRuntimeKnobs
pub struct ResolvedRuntimeKnobs<'a> {
pub max_tool_iterations: usize,
pub excluded_tools: &'a [String],
pub dedup_exempt_tools: &'a [String],
pub pacing: &'a PacingConfig,
pub strict_tool_parsing: bool,
pub parallel_tools: bool,
pub max_tool_result_chars: usize,
pub context_token_budget: usize,
pub knobs: &'a LoopKnobs,
}Expand description
The resolved per-agent runtime knobs half of ResolvedAgentExecution::resolve’s
input: the values derived from the agent’s resolved config. A grouped input layer
(not stored state); resolve spreads it into the bundle.
Fields§
§max_tool_iterations: usize§excluded_tools: &'a [String]§dedup_exempt_tools: &'a [String]§pacing: &'a PacingConfig§strict_tool_parsing: bool§parallel_tools: bool§max_tool_result_chars: usize§context_token_budget: usize§knobs: &'a LoopKnobsAuto Trait Implementations§
impl<'a> Freeze for ResolvedRuntimeKnobs<'a>
impl<'a> RefUnwindSafe for ResolvedRuntimeKnobs<'a>
impl<'a> Send for ResolvedRuntimeKnobs<'a>
impl<'a> Sync for ResolvedRuntimeKnobs<'a>
impl<'a> Unpin for ResolvedRuntimeKnobs<'a>
impl<'a> UnsafeUnpin for ResolvedRuntimeKnobs<'a>
impl<'a> UnwindSafe for ResolvedRuntimeKnobs<'a>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more