pub struct RunnerConfig {
pub auto_execute_tools: bool,
pub auto_respond_tools: bool,
pub max_concurrent_tools: usize,
}Available on crate feature
realtime only.Expand description
Configuration for the RealtimeRunner.
Fields§
§auto_execute_tools: boolWhether to automatically execute tool calls.
auto_respond_tools: boolWhether to automatically send tool responses.
max_concurrent_tools: usizeMaximum concurrent tool executions.
Trait Implementations§
Source§impl Clone for RunnerConfig
impl Clone for RunnerConfig
Source§fn clone(&self) -> RunnerConfig
fn clone(&self) -> RunnerConfig
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 Default for RunnerConfig
impl Default for RunnerConfig
Source§fn default() -> RunnerConfig
fn default() -> RunnerConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RunnerConfig
impl RefUnwindSafe for RunnerConfig
impl Send for RunnerConfig
impl Sync for RunnerConfig
impl Unpin for RunnerConfig
impl UnsafeUnpin for RunnerConfig
impl UnwindSafe for RunnerConfig
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