pub struct ModelRequest {
pub system_prompt: String,
pub messages: Vec<AgentMessage>,
}
Expand description
Request sent to the underlying language model. Middlewares can augment the system prompt or mutate the pending message list before the model call.
Fields§
§system_prompt: String
§messages: Vec<AgentMessage>
Implementations§
Source§impl ModelRequest
impl ModelRequest
pub fn new( system_prompt: impl Into<String>, messages: Vec<AgentMessage>, ) -> Self
pub fn append_prompt(&mut self, fragment: &str)
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 · 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 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