The vector store files batch objectBeta
Beta
A batch of files attached to a vector store.
The ID of the vector store that the File is attached to.
The status of the vector store files batch, which can be either in_progress
, completed
, cancelled
or failed
.
OBJECT The vector store files batch object
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"id": "vsfb_123",
"object": "vector_store.files_batch",
"created_at": 1698107661,
"vector_store_id": "vs_abc123",
"status": "completed",
"file_counts": {
"in_progress": 0,
"completed": 100,
"failed": 0,
"cancelled": 0,
"total": 100
}
}