pub struct AssistantToolCodeInterpreterResources {
pub file_ids: Vec<String>,
}
Fields§
§file_ids: Vec<String>
A list of file IDs made available to the `code_interpreter`` tool. There can be a maximum of 20 files associated with the tool.
Trait Implementations§
Source§impl Clone for AssistantToolCodeInterpreterResources
impl Clone for AssistantToolCodeInterpreterResources
Source§fn clone(&self) -> AssistantToolCodeInterpreterResources
fn clone(&self) -> AssistantToolCodeInterpreterResources
Returns a copy 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 Default for AssistantToolCodeInterpreterResources
impl Default for AssistantToolCodeInterpreterResources
Source§fn default() -> AssistantToolCodeInterpreterResources
fn default() -> AssistantToolCodeInterpreterResources
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssistantToolCodeInterpreterResources
impl<'de> Deserialize<'de> for AssistantToolCodeInterpreterResources
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 From<AssistantToolCodeInterpreterResources> for AssistantToolResources
impl From<AssistantToolCodeInterpreterResources> for AssistantToolResources
Source§fn from(value: AssistantToolCodeInterpreterResources) -> Self
fn from(value: AssistantToolCodeInterpreterResources) -> Self
Converts to this type from the input type.
Source§impl From<AssistantToolCodeInterpreterResources> for CreateAssistantToolResources
impl From<AssistantToolCodeInterpreterResources> for CreateAssistantToolResources
Source§fn from(value: AssistantToolCodeInterpreterResources) -> Self
fn from(value: AssistantToolCodeInterpreterResources) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AssistantToolCodeInterpreterResources
impl PartialEq for AssistantToolCodeInterpreterResources
Source§fn eq(&self, other: &AssistantToolCodeInterpreterResources) -> bool
fn eq(&self, other: &AssistantToolCodeInterpreterResources) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AssistantToolCodeInterpreterResources
Auto Trait Implementations§
impl Freeze for AssistantToolCodeInterpreterResources
impl RefUnwindSafe for AssistantToolCodeInterpreterResources
impl Send for AssistantToolCodeInterpreterResources
impl Sync for AssistantToolCodeInterpreterResources
impl Unpin for AssistantToolCodeInterpreterResources
impl UnwindSafe for AssistantToolCodeInterpreterResources
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