Get Vector Store File Batch action to poll until the batch status is completed.
External DocumentationTo learn more, visit the OpenAI documentation.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get Vector Store File Batch action to poll until the batch status is completed.
| Parameter | Description |
|---|---|
| File IDs | A comma-separated list of OpenAI file IDs to attach to the vector store. Can be obtained using the Upload File action.The maximum batch size is 2000 files. |
| Vector Store ID | The ID of the vector store. Can be obtained using the Create Vector Store action. |
| Parameter | Description |
|---|---|
| Additional Parameters | A JSON object for additional body parameters. Values specified in this parameter will override equivalent parameters. For example: The object must follow the vendor’s structure as defined in the API documentation. |
{
"id": "vsfb_abc123",
"object": "vector_store.files_batch",
"created_at": 1699061776,
"vector_store_id": "vs_abc123",
"status": "in_progress",
"file_counts": {
"in_progress": 1,
"completed": 0,
"failed": 0,
"cancelled": 0,
"total": 1
}
}
Was this page helpful?