pub struct ModelRequest {
pub model: Model,
pub messages: Vec<AgentMessage>,
pub tools: Vec<ToolDefinition>,
pub thinking: ThinkingLevel,
pub params: BTreeMap<String, Value>,
}Expand description
A request to a model.
Fields§
§model: ModelThe model to call.
messages: Vec<AgentMessage>The conversation so far.
tools: Vec<ToolDefinition>Tools the model may call.
thinking: ThinkingLevelReasoning effort.
params: BTreeMap<String, Value>Provider-specific overrides (temperature, max_tokens, …).
Trait Implementations§
Source§impl Clone for ModelRequest
impl Clone for ModelRequest
Source§fn clone(&self) -> ModelRequest
fn clone(&self) -> ModelRequest
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 moreAuto Trait Implementations§
impl Freeze for ModelRequest
impl RefUnwindSafe for ModelRequest
impl Send for ModelRequest
impl Sync for ModelRequest
impl Unpin for ModelRequest
impl UnsafeUnpin for ModelRequest
impl UnwindSafe for ModelRequest
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