POST /v2/vector_stores
POST {{API_HOST}}/v2/vector_stores
{
"name": "knowledge-base",
"description": "Хранилище для базы знаний"
}
GET /v2/vector_stores
GET {{API_HOST}}/v2/vector_stores?limit=20&order=desc&after=...&before=...
GET /v2/vector_stores/{vector_store_id}
GET {{API_HOST}}/v2/vector_stores/{vector_store_id}
{
"name": "knowledge-base",
"description": "Хранилище для базы знаний"
}
POST /v2/vector_stores/{vector_store_id}
POST {{API_HOST}}/v2/vector_stores/{vector_store_id}
{
"name": "updated-name",
"description": "Обновлённое описание"
}
DELETE /v2/vector_stores/{vector_store_id}
DELETE {{API_HOST}}/v2/vector_stores/{vector_store_id}