pub struct ListFilesInVectorStoreBatchQuery {
pub limit: Option<u32>,
pub order: Option<ListFilesInVectorStoreBatchOrder>,
pub after: Option<String>,
pub before: Option<String>,
pub filter: Option<ListFilesInVectorStoreBatchFilter>,
}Available on crate feature
vectorstore-types only.Expand description
Query parameters for listing files in vector store batch.
Fields§
§limit: Option<u32>A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.
order: Option<ListFilesInVectorStoreBatchOrder>Sort order by the created_at timestamp of the objects. asc for ascending order and
desc for descending order.
after: Option<String>A cursor for use in pagination. after is an object ID that defines your place in the
list.
before: Option<String>A cursor for use in pagination. before is an object ID that defines your place in the
list.
filter: Option<ListFilesInVectorStoreBatchFilter>Filter by file status. One of in_progress, completed, failed, cancelled.
Trait Implementations§
Source§impl Clone for ListFilesInVectorStoreBatchQuery
impl Clone for ListFilesInVectorStoreBatchQuery
Source§fn clone(&self) -> ListFilesInVectorStoreBatchQuery
fn clone(&self) -> ListFilesInVectorStoreBatchQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListFilesInVectorStoreBatchQuery
impl Default for ListFilesInVectorStoreBatchQuery
Source§fn default() -> ListFilesInVectorStoreBatchQuery
fn default() -> ListFilesInVectorStoreBatchQuery
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListFilesInVectorStoreBatchQuery
Auto Trait Implementations§
impl Freeze for ListFilesInVectorStoreBatchQuery
impl RefUnwindSafe for ListFilesInVectorStoreBatchQuery
impl Send for ListFilesInVectorStoreBatchQuery
impl Sync for ListFilesInVectorStoreBatchQuery
impl Unpin for ListFilesInVectorStoreBatchQuery
impl UnsafeUnpin for ListFilesInVectorStoreBatchQuery
impl UnwindSafe for ListFilesInVectorStoreBatchQuery
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