pub struct LLMOpenAIOptions {
pub reasoning_effort: Option<String>,
}Expand description
OpenAI-specific options
Fields§
§reasoning_effort: Option<String>Reasoning effort for o1/o3/o4 models (“low”, “medium”, “high”)
Trait Implementations§
Source§impl Clone for LLMOpenAIOptions
impl Clone for LLMOpenAIOptions
Source§fn clone(&self) -> LLMOpenAIOptions
fn clone(&self) -> LLMOpenAIOptions
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 LLMOpenAIOptions
impl Debug for LLMOpenAIOptions
Source§impl Default for LLMOpenAIOptions
impl Default for LLMOpenAIOptions
Source§fn default() -> LLMOpenAIOptions
fn default() -> LLMOpenAIOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LLMOpenAIOptions
impl<'de> Deserialize<'de> for LLMOpenAIOptions
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 LLMOpenAIOptions
impl RefUnwindSafe for LLMOpenAIOptions
impl Send for LLMOpenAIOptions
impl Sync for LLMOpenAIOptions
impl Unpin for LLMOpenAIOptions
impl UnwindSafe for LLMOpenAIOptions
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