External DocumentationTo learn more, visit the OpenAI documentation.
Actions
Create Vector Store
Create a vector store for indexing and searching uploaded documents.

Preview this Workflow on desktop
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Description |
|---|---|
| Description | The description of the vector store. Can be used to describe the vector store’s purpose. |
| File IDs | A comma-separated list of OpenAI file IDs that the vector store should use. Can be obtained using the Upload File action. |
| Name | The name of the vector store. |
| 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": "vs_abc123",
"object": "vector_store",
"created_at": 1699061776,
"name": "blink-yaml",
"status": "in_progress",
"usage_bytes": 0,
"file_counts": {
"in_progress": 0,
"completed": 0,
"failed": 0,
"cancelled": 0,
"total": 0
}
}
Was this page helpful?