pub enum Item {
InputMessage(InputMessage),
OutputMessage(OutputMessage),
FileSearchToolCall(FileSearchToolCall),
ComputerToolCall(ComputerToolCall),
ComputerCallOutputItemParam(ComputerCallOutputItemParam),
WebSearchToolCall(WebSearchToolCall),
FunctionToolCall(FunctionToolCall),
FunctionCallOutputItemParam(FunctionCallOutputItemParam),
ReasoningItem(ReasoningItem),
}
Expand description
Content item used to generate a response.
Variants§
InputMessage(InputMessage)
OutputMessage(OutputMessage)
FileSearchToolCall(FileSearchToolCall)
ComputerToolCall(ComputerToolCall)
ComputerCallOutputItemParam(ComputerCallOutputItemParam)
WebSearchToolCall(WebSearchToolCall)
FunctionToolCall(FunctionToolCall)
FunctionCallOutputItemParam(FunctionCallOutputItemParam)
ReasoningItem(ReasoningItem)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Item
impl<'de> Deserialize<'de> for Item
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
impl StructuralPartialEq for Item
Auto Trait Implementations§
impl Freeze for Item
impl RefUnwindSafe for Item
impl Send for Item
impl Sync for Item
impl Unpin for Item
impl UnwindSafe for Item
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