VectorStore
Written by
Updated at August 18, 2026
Note
Currently, there are two UIs that support Workflows: Yandex Cloud
- Workflows created in the Yandex Cloud UI are automatically available in the AI Studio UI.
- Workflows created in the AI Studio UI are not available in the Yandex Cloud UI.
Starting September 3, 2026, Workflows will no longer be supported in the Yandex Cloud UI. To create and manage workflows, use the AI Studio UI.
Interacting with a vector store.
| Field name | Type | Required | Default value | Templating supported | Description |
|---|---|---|---|---|---|
uploadFile |
UploadFile | Yes | None | None | Description of how you upload a file to a vector store. |
UploadFile
The textFile, urlFile, and objectStorage fields are mutually exclusive: you can use only one of them.
| Field name | Type | Required | Default value | Templating supported | Description |
|---|---|---|---|---|---|
vectorStoreId |
string |
Yes | None | None | Vector store ID |
textFile |
TextFile | None | None | None | Text file contents |
urlFile |
UrlFile | None | None | None | Public URL file contents |
objectStorage |
ObjectStorage | None | None | None | Object Storage bucket file contents |
attributes |
map<string,string> |
None | None | Yes | Additional file attributes (metadata) in key-value format |
TextFile
| Field name | Type | Required | Default value | Templating supported | Description |
|---|---|---|---|---|---|
text |
string |
Yes | None | Yes | File text contents |
fileName |
string |
Yes | None | Yes | File name to save it under. |
UrlFile
| Field name | Type | Required | Default value | Templating supported | Description |
|---|---|---|---|---|---|
url |
string |
Yes | None | Yes | Public URL to access the file. |
fileName |
string |
Yes | None | Yes | File name to save it under. |
ObjectStorage
| Field name | Type | Required | Default value | Templating supported | Description |
|---|---|---|---|---|---|
bucket |
string |
Yes | None | None | Name of the Object Storage bucket the file resides in. |
object |
string |
Yes | None | Yes | Object name, e.g., prefix/subprefix/data.json |