pub enum ThinkingConfig {
Adaptive {
effort: EffortLevel,
},
Enabled {
budget_tokens: u32,
},
}Expand description
Extended thinking configuration.
Extended thinking lets Claude think step-by-step before responding. Two modes are available:
- Adaptive: Claude decides when and how much to think. Controlled via effort level. Supported on Claude Opus 4.6 and Sonnet 4.6.
- Enabled: Manual extended thinking with an explicit token budget. For older models (Sonnet 4.5, etc.) or when a specific budget is needed.
Variants§
Adaptive
Adaptive thinking — Claude decides when and how much to think.
Fields
§
effort: EffortLevelEnabled
Manual extended thinking with an explicit token budget.
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<'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
Source§impl PartialEq for ThinkingConfig
impl PartialEq for ThinkingConfig
Source§impl Serialize for ThinkingConfig
impl Serialize for ThinkingConfig
impl StructuralPartialEq for ThinkingConfig
Auto Trait Implementations§
impl Freeze for ThinkingConfig
impl RefUnwindSafe for ThinkingConfig
impl Send for ThinkingConfig
impl Sync for ThinkingConfig
impl Unpin for ThinkingConfig
impl UnsafeUnpin 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