pub enum ReasoningSummary {
Auto,
Concise,
Detailed,
None,
}Expand description
A summary of the reasoning performed by the model. This can be useful for debugging and understanding the model’s reasoning process. See https://platform.openai.com/docs/guides/reasoning?api-mode=responses#reasoning-summaries
JSON schema
{
"description": "A summary of the reasoning performed by the model. This can be useful for debugging and understanding the model's reasoning process. See https://platform.openai.com/docs/guides/reasoning?api-mode=responses#reasoning-summaries",
"oneOf": [
{
"type": "string",
"enum": [
"auto",
"concise",
"detailed"
]
},
{
"description": "Option to disable reasoning summaries.",
"type": "string",
"enum": [
"none"
]
}
]
}Variants§
Trait Implementations§
Source§impl Clone for ReasoningSummary
impl Clone for ReasoningSummary
Source§fn clone(&self) -> ReasoningSummary
fn clone(&self) -> ReasoningSummary
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 ReasoningSummary
impl Debug for ReasoningSummary
Source§impl<'de> Deserialize<'de> for ReasoningSummary
impl<'de> Deserialize<'de> for ReasoningSummary
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 Display for ReasoningSummary
impl Display for ReasoningSummary
Source§impl FromStr for ReasoningSummary
impl FromStr for ReasoningSummary
Source§impl Hash for ReasoningSummary
impl Hash for ReasoningSummary
Source§impl Ord for ReasoningSummary
impl Ord for ReasoningSummary
Source§fn cmp(&self, other: &ReasoningSummary) -> Ordering
fn cmp(&self, other: &ReasoningSummary) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ReasoningSummary
impl PartialEq for ReasoningSummary
Source§fn eq(&self, other: &ReasoningSummary) -> bool
fn eq(&self, other: &ReasoningSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ReasoningSummary
impl PartialOrd for ReasoningSummary
Source§impl Serialize for ReasoningSummary
impl Serialize for ReasoningSummary
Source§impl TryFrom<&String> for ReasoningSummary
impl TryFrom<&String> for ReasoningSummary
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ReasoningSummary
impl TryFrom<&str> for ReasoningSummary
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ReasoningSummary
impl TryFrom<String> for ReasoningSummary
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for ReasoningSummary
impl Eq for ReasoningSummary
impl StructuralPartialEq for ReasoningSummary
Auto Trait Implementations§
impl Freeze for ReasoningSummary
impl RefUnwindSafe for ReasoningSummary
impl Send for ReasoningSummary
impl Sync for ReasoningSummary
impl Unpin for ReasoningSummary
impl UnsafeUnpin for ReasoningSummary
impl UnwindSafe for ReasoningSummary
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,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.