The vector store files batch object
Beta

A batch of files attached to a vector store.source

The identifier, which can be referenced in API endpoints.source

The object type, which is always vector_store.file_batch.source

The Unix timestamp (in seconds) for when the vector store files batch was created.source

The ID of the vector store that the File is attached to.source

The status of the vector store files batch, which can be either in_progress, completed, cancelled or failed.source

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
  }
}