pub struct ThinkingConfig {
pub include_thoughts: Option<bool>,
pub thinking_level: Option<ThinkingLevel>,
pub thinking_budget: Option<i32>,
}Expand description
Configuration for thinking capabilities in Gemini 3 and 2.5 series models.
Fields§
§include_thoughts: Option<bool>Whether to include thought summaries in the response.
thinking_level: Option<ThinkingLevel>The thinking level for Gemini 3 models (low, high for Pro; minimal, low, medium, high for Flash).
thinking_budget: Option<i32>The thinking budget for Gemini 2.5 models (number of thinking tokens).
Implementations§
Source§impl ThinkingConfig
impl ThinkingConfig
Sourcepub fn gemini_3(level: ThinkingLevel, include_thoughts: bool) -> Self
pub fn gemini_3(level: ThinkingLevel, include_thoughts: bool) -> Self
Creates a configuration for Gemini 3 models with specified thinking level.
§Arguments
level- The thinking level to use.include_thoughts- Whether to include thought summaries.
Sourcepub fn gemini_2_5(budget: i32, include_thoughts: bool) -> Self
pub fn gemini_2_5(budget: i32, include_thoughts: bool) -> Self
Creates a configuration for Gemini 2.5 models with specified thinking budget.
§Arguments
budget- The thinking budget (-1 for dynamic, 0 to disable, or specific token count).include_thoughts- Whether to include thought summaries.
Sourcepub fn high_reasoning() -> Self
pub fn high_reasoning() -> Self
Creates a configuration optimized for complex reasoning tasks.
Sourcepub fn fast_response() -> Self
pub fn fast_response() -> Self
Creates a configuration optimized for fast responses.
Trait Implementations§
Source§impl Clone for ThinkingConfig
impl Clone for ThinkingConfig
Source§fn clone(&self) -> ThinkingConfig
fn clone(&self) -> ThinkingConfig
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 moreSource§impl Debug for ThinkingConfig
impl Debug for ThinkingConfig
Source§impl Default for ThinkingConfig
impl Default for ThinkingConfig
Source§fn default() -> ThinkingConfig
fn default() -> ThinkingConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ThinkingConfig
impl<'de> Deserialize<'de> for ThinkingConfig
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 ThinkingConfig
impl RefUnwindSafe for ThinkingConfig
impl Send for ThinkingConfig
impl Sync for ThinkingConfig
impl Unpin for ThinkingConfig
impl UnwindSafe for ThinkingConfig
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