pub enum Includable {
FileSearchCallResults,
MessageInputImageImageUrl,
ComputerCallOutputOutputImageUrl,
}
Expand description
Specify additional output data to include in the model response. Currently supported values are:
file_search_call.results
: Include the search results of the file search tool call.message.input_image.image_url
: Include image urls from the input message.computer_call_output.output.image_url
: Include image urls from the computer call output.
Variants§
FileSearchCallResults
file_search_call.results
MessageInputImageImageUrl
message.input_image.image_url
ComputerCallOutputOutputImageUrl
computer_call_output.output.image_url
Trait Implementations§
Source§impl Clone for Includable
impl Clone for Includable
Source§fn clone(&self) -> Includable
fn clone(&self) -> Includable
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 Includable
impl Debug for Includable
Source§impl<'de> Deserialize<'de> for Includable
impl<'de> Deserialize<'de> for Includable
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 Includable
impl PartialEq for Includable
Source§impl Serialize for Includable
impl Serialize for Includable
impl Copy for Includable
impl StructuralPartialEq for Includable
Auto Trait Implementations§
impl Freeze for Includable
impl RefUnwindSafe for Includable
impl Send for Includable
impl Sync for Includable
impl Unpin for Includable
impl UnwindSafe for Includable
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