pub struct ToolChoiceTypes {
pub type: ToolChoiceTypesType,
}
Expand description
Indicates that the model should use a built-in tool to generate a response. Learn more about built-in tools.
Fields§
§type: ToolChoiceTypesType
The type of hosted tool the model should to use. Learn more about built-in tools.
Allowed values are:
file_search
web_search_preview
computer_use_preview
code_interpreter
mcp
image_generation
Implementations§
Trait Implementations§
Source§impl Clone for ToolChoiceTypes
impl Clone for ToolChoiceTypes
Source§fn clone(&self) -> ToolChoiceTypes
fn clone(&self) -> ToolChoiceTypes
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 ToolChoiceTypes
impl Debug for ToolChoiceTypes
Source§impl<'de> Deserialize<'de> for ToolChoiceTypes
impl<'de> Deserialize<'de> for ToolChoiceTypes
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 ToolChoiceTypes
impl PartialEq for ToolChoiceTypes
Source§impl Serialize for ToolChoiceTypes
impl Serialize for ToolChoiceTypes
impl Copy for ToolChoiceTypes
impl StructuralPartialEq for ToolChoiceTypes
Auto Trait Implementations§
impl Freeze for ToolChoiceTypes
impl RefUnwindSafe for ToolChoiceTypes
impl Send for ToolChoiceTypes
impl Sync for ToolChoiceTypes
impl Unpin for ToolChoiceTypes
impl UnwindSafe for ToolChoiceTypes
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