RequestConfig

Struct RequestConfig 

Source
pub struct RequestConfig {
    pub temperature: Option<f64>,
    pub max_tokens: Option<u32>,
    pub top_p: Option<f64>,
    pub top_k: Option<u32>,
    pub min_p: Option<f64>,
    pub presence_penalty: Option<f64>,
    pub response_format: Option<ResponseFormat>,
    pub tools: Vec<Tool>,
    pub tool_choice: Option<ToolChoice>,
    pub user_id: Option<String>,
    pub session_id: Option<String>,
    pub llm_path: Option<String>,
}
Expand description

Configuration for a single LLM request.

Override default provider settings on a per-request basis. All fields are optional - unset fields use the provider’s defaults.

§Basic Usage

use multi_llm::RequestConfig;

let config = RequestConfig {
    temperature: Some(0.7),
    max_tokens: Some(1000),
    ..Default::default()
};

§With Tools

use multi_llm::{RequestConfig, Tool, ToolChoice};

let weather_tool = Tool {
    name: "get_weather".to_string(),
    description: "Get weather for a city".to_string(),
    parameters: serde_json::json!({"type": "object", "properties": {}}),
};

let config = RequestConfig {
    tools: vec![weather_tool],
    tool_choice: Some(ToolChoice::Auto),
    ..Default::default()
};

§Sampling Parameters

ParameterRangeEffect
temperature0.0-2.0Randomness (0=deterministic, 2=very random)
top_p0.0-1.0Nucleus sampling threshold
top_k1+Limit vocab to top K tokens
presence_penalty-2.0-2.0Discourage repetition

Fields§

§temperature: Option<f64>

Temperature for response randomness.

  • 0.0: Deterministic (always pick most likely token)
  • 0.7: Balanced (good default for most tasks)
  • 1.0+: More creative/random

Range: 0.0 to 2.0 (provider-dependent)

§max_tokens: Option<u32>

Maximum tokens to generate in the response.

Limits response length. The actual response may be shorter if the model completes its thought naturally.

§top_p: Option<f64>

Top-p (nucleus) sampling parameter.

Only consider tokens whose cumulative probability exceeds this threshold. Lower values = more focused, higher values = more diverse. Range: 0.0 to 1.0 (typically 0.9-0.95)

§top_k: Option<u32>

Top-k sampling parameter.

Only consider the top K most likely tokens at each step. Lower values = more focused. Not all providers support this.

§min_p: Option<f64>

Min-p sampling parameter.

Filter tokens below this probability relative to the top token. Range: 0.0 to 1.0. Not all providers support this.

§presence_penalty: Option<f64>

Presence penalty to discourage repetition.

Positive values reduce likelihood of repeating tokens that have appeared. Range: -2.0 to 2.0 (typically 0.0 to 1.0)

§response_format: Option<ResponseFormat>

Response format for structured output.

When set, the model attempts to return JSON matching the schema. Use with LlmProvider::execute_structured_llm() for best results.

§tools: Vec<Tool>

Tools available for this request.

Define functions the LLM can call. See Tool for details.

§tool_choice: Option<ToolChoice>

Strategy for tool selection.

Controls whether tools are optional, required, or disabled. See ToolChoice for options.

§user_id: Option<String>

User ID for analytics and cache analysis.

Helps track cache hit rates per user and debug user-specific issues.

§session_id: Option<String>

Session ID for session-level analytics.

Track cache performance and behavior within a conversation session.

§llm_path: Option<String>

LLM path context for distinguishing call types.

Useful when your application has multiple LLM call paths (e.g., “chat”, “analysis”, “summarization”).

Trait Implementations§

Source§

impl Clone for RequestConfig

Source§

fn clone(&self) -> RequestConfig

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for RequestConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for RequestConfig

Source§

fn default() -> RequestConfig

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for RequestConfig

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for RequestConfig

Source§

fn eq(&self, other: &RequestConfig) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for RequestConfig

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for RequestConfig

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,