Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 1.6 KB

VectorStoreFileObject.md

File metadata and controls

40 lines (24 loc) · 1.6 KB

VectorStoreFileObject

A list of files attached to a vector store.

Properties

Name Type Description Notes
id String The identifier, which can be referenced in API endpoints.
_object ObjectEnum The object type, which is always `vector_store.file`.
usageBytes Integer The total vector store usage in bytes. Note that this may be different from the original file size.
createdAt Integer The Unix timestamp (in seconds) for when the vector store file was created.
vectorStoreId String The ID of the vector store that the File is attached to.
status StatusEnum The status of the vector store file, which can be either `in_progress`, `completed`, `cancelled`, or `failed`. The status `completed` indicates that the vector store file is ready for use.
lastError VectorStoreFileObjectLastError
chunkingStrategy VectorStoreFileObjectChunkingStrategy [optional]

Enum: ObjectEnum

Name Value
VECTOR_STORE_FILE "vector_store.file"

Enum: StatusEnum

Name Value
IN_PROGRESS "in_progress"
COMPLETED "completed"
CANCELLED "cancelled"
FAILED "failed"