pub struct RunStepDeltaStepDetailsToolCallsObject {
pub tool_calls: Option<Vec<Value>>,
pub _type: String,
}
Fields§
§tool_calls: Option<Vec<Value>>
An array of tool calls the run step was involved in. These can be associated with one of three types of tools: code_interpreter
, file_search
, or function
.
_type: String
Always tool_calls
.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunStepDeltaStepDetailsToolCallsObject
impl<'de> Deserialize<'de> for RunStepDeltaStepDetailsToolCallsObject
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
Auto Trait Implementations§
impl Freeze for RunStepDeltaStepDetailsToolCallsObject
impl RefUnwindSafe for RunStepDeltaStepDetailsToolCallsObject
impl Send for RunStepDeltaStepDetailsToolCallsObject
impl Sync for RunStepDeltaStepDetailsToolCallsObject
impl Unpin for RunStepDeltaStepDetailsToolCallsObject
impl UnwindSafe for RunStepDeltaStepDetailsToolCallsObject
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