📑 Vector Store Files Official Documentation

â‹™ Create Vector Store File

Create a vector store file by attaching a File to a vector store.

msg.payload Properties

vector_store_id string
The ID of the vector store for which to create a File.
file_id string
A File ID that the vector store should use. Useful for tools like file_search that can access files.

â‹™ List Vector Store Files

Returns a list of vector store files.

msg.payload Properties

vector_store_id string
The ID of the vector store that the files belong to.
limit integer
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.
order string
Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
before string
A cursor for use in pagination. before is an object ID that defines your place in the list.
after string
A cursor for use in pagination. after is an object ID that defines your place in the list.
filter string
Filter by file status. One of in_progress, completed, failed, cancelled.

â‹™ Retrieve Vector Store File

Retrieves a vector store file.

msg.payload Properties

vector_store_id string
The ID of the vector store that the file belongs to.
file_id string
The ID of the file being retrieved.

â‹™ Delete Vector Store File

Remove a file from a vector store.

msg.payload Properties

vector_store_id string
The ID of the vector store that the file belongs to.
file_id string
The ID of the file to remove from the vector store.