pub struct ChatParams {
pub reasoning_effort: Option<String>,
pub prompt_cache_key: Option<String>,
pub temperature: Option<f32>,
pub top_p: Option<f32>,
pub max_tokens: Option<u32>,
}Expand description
Sampling + reasoning parameters for a completion request.
Fields§
§reasoning_effort: Option<String>Reasoning effort wire value (for example minimal, low, high,
xhigh, max, or explicit none), as stored per model. Rust None
means do not send the parameter at all.
prompt_cache_key: Option<String>Stable per-session key used by compatible OpenAI-wire backends to keep prompt-cache entries on one cache lane.
temperature: Option<f32>§top_p: Option<f32>§max_tokens: Option<u32>Trait Implementations§
Source§impl Clone for ChatParams
impl Clone for ChatParams
Source§fn clone(&self) -> ChatParams
fn clone(&self) -> ChatParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ChatParams
impl Debug for ChatParams
Source§impl Default for ChatParams
impl Default for ChatParams
Source§fn default() -> ChatParams
fn default() -> ChatParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ChatParams
impl RefUnwindSafe for ChatParams
impl Send for ChatParams
impl Sync for ChatParams
impl Unpin for ChatParams
impl UnsafeUnpin for ChatParams
impl UnwindSafe for ChatParams
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.