Skip to main content
Create a vector store for indexing and searching uploaded documents.
External DocumentationTo learn more, visit the OpenAI documentation.

Basic Parameters

ParameterDescription
DescriptionThe description of the vector store. Can be used to describe the vector store’s purpose.
File IDsA comma-separated list of OpenAI file IDs that the vector store should use. Can be obtained using the Upload File action.
NameThe name of the vector store.

Advanced Parameters

ParameterDescription
Additional ParametersA JSON object for additional body parameters. Values specified in this parameter will override equivalent parameters.

For example:
{
“first_key”: 12345,
“second_key”: “some_value”
}
The object must follow the vendor’s structure as defined in the API documentation.

Example Output

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

Workflow Library Example

Create Vector Store with Openai and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop