pub struct CreateVectorStoreFileBatchRequest {
pub attributes: Option<VectorStoreFileAttributes>,
pub chunking_strategy: Option<ChunkingStrategyRequestParam>,
pub file_ids: Vec<String>,
}
Fields§
§attributes: Option<VectorStoreFileAttributes>
§chunking_strategy: Option<ChunkingStrategyRequestParam>
§file_ids: Vec<String>
A list of File IDs that the vector store should use. Useful for tools like file_search
that can access files.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CreateVectorStoreFileBatchRequest
impl<'de> Deserialize<'de> for CreateVectorStoreFileBatchRequest
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 CreateVectorStoreFileBatchRequest
impl RefUnwindSafe for CreateVectorStoreFileBatchRequest
impl Send for CreateVectorStoreFileBatchRequest
impl Sync for CreateVectorStoreFileBatchRequest
impl Unpin for CreateVectorStoreFileBatchRequest
impl UnwindSafe for CreateVectorStoreFileBatchRequest
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