pub struct ToolSearchOutput {
pub id: String,
pub call_id: Option<String>,
pub execution: ToolSearchExecutionType,
pub tools: Vec<Tool>,
pub status: FunctionCallOutputStatusEnum,
pub created_by: Option<String>,
}Available on crate feature
response-types only.Expand description
A tool search output item.
Fields§
§id: StringThe unique ID of the tool search output item.
call_id: Option<String>The unique ID of the tool search call generated by the model.
execution: ToolSearchExecutionTypeWhether tool search was executed by the server or by the client.
tools: Vec<Tool>The loaded tool definitions returned by tool search.
status: FunctionCallOutputStatusEnumThe status of the tool search output item.
created_by: Option<String>The identifier of the actor that created the item.
Trait Implementations§
Source§impl Clone for ToolSearchOutput
impl Clone for ToolSearchOutput
Source§fn clone(&self) -> ToolSearchOutput
fn clone(&self) -> ToolSearchOutput
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 ToolSearchOutput
impl Debug for ToolSearchOutput
Source§impl<'de> Deserialize<'de> for ToolSearchOutput
impl<'de> Deserialize<'de> for ToolSearchOutput
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 ToolSearchOutput
impl PartialEq for ToolSearchOutput
Source§impl Serialize for ToolSearchOutput
impl Serialize for ToolSearchOutput
impl StructuralPartialEq for ToolSearchOutput
Auto Trait Implementations§
impl Freeze for ToolSearchOutput
impl RefUnwindSafe for ToolSearchOutput
impl Send for ToolSearchOutput
impl Sync for ToolSearchOutput
impl Unpin for ToolSearchOutput
impl UnsafeUnpin for ToolSearchOutput
impl UnwindSafe for ToolSearchOutput
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