pub enum ReasoningMode {
Effort,
ThinkingLevel,
ThinkingBudget,
}Expand description
Reasoning mode expected by the caller when selecting models.
Variants§
Effort
Effort-based reasoning control.
ThinkingLevel
Thinking level-based reasoning control.
ThinkingBudget
Thinking budget-based reasoning control.
Trait Implementations§
Source§impl Clone for ReasoningMode
impl Clone for ReasoningMode
Source§fn clone(&self) -> ReasoningMode
fn clone(&self) -> ReasoningMode
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 ReasoningMode
impl Debug for ReasoningMode
Source§impl<'de> Deserialize<'de> for ReasoningMode
impl<'de> Deserialize<'de> for ReasoningMode
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 ReasoningMode
impl PartialEq for ReasoningMode
Source§impl Serialize for ReasoningMode
impl Serialize for ReasoningMode
impl StructuralPartialEq for ReasoningMode
Auto Trait Implementations§
impl Freeze for ReasoningMode
impl RefUnwindSafe for ReasoningMode
impl Send for ReasoningMode
impl Sync for ReasoningMode
impl Unpin for ReasoningMode
impl UnsafeUnpin for ReasoningMode
impl UnwindSafe for ReasoningMode
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