pub struct LlmRequest {
pub model: String,
pub contents: Vec<Content>,
pub config: Option<GenerateContentConfig>,
pub tools: HashMap<String, Value>,
}Expand description
A request to an LLM provider.
Fields§
§model: StringThe model identifier to use for generation.
contents: Vec<Content>The conversation contents (system, user, model messages).
config: Option<GenerateContentConfig>Optional generation configuration (temperature, tokens, etc.).
tools: HashMap<String, Value>Tool declarations keyed by tool name.
Implementations§
Source§impl LlmRequest
impl LlmRequest
Sourcepub fn new(model: impl Into<String>, contents: Vec<Content>) -> Self
pub fn new(model: impl Into<String>, contents: Vec<Content>) -> Self
Creates a new request with the given model and contents.
Sourcepub fn with_response_schema(self, schema: Value) -> Self
pub fn with_response_schema(self, schema: Value) -> Self
Set the response schema for structured output.
Sourcepub fn with_config(self, config: GenerateContentConfig) -> Self
pub fn with_config(self, config: GenerateContentConfig) -> Self
Set the generation config.
Trait Implementations§
Source§impl Clone for LlmRequest
impl Clone for LlmRequest
Source§fn clone(&self) -> LlmRequest
fn clone(&self) -> LlmRequest
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 LlmRequest
impl Debug for LlmRequest
Source§impl<'de> Deserialize<'de> for LlmRequest
impl<'de> Deserialize<'de> for LlmRequest
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 LlmRequest
impl RefUnwindSafe for LlmRequest
impl Send for LlmRequest
impl Sync for LlmRequest
impl Unpin for LlmRequest
impl UnsafeUnpin for LlmRequest
impl UnwindSafe for LlmRequest
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