undo vector_store_id in params

This commit is contained in:
Ashwin Bharambe 2025-10-12 18:48:55 -07:00
parent 33d7119708
commit e6428492e6
11 changed files with 94 additions and 59 deletions

View file

@ -3357,7 +3357,17 @@
],
"summary": "Create a vector store file batch.",
"description": "Create a vector store file batch.\nGenerate an OpenAI-compatible vector store file batch for the given vector store.",
"parameters": [],
"parameters": [
{
"name": "vector_store_id",
"in": "path",
"description": "The ID of the vector store to create the file batch for.",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
@ -14856,10 +14866,6 @@
"OpenAICreateVectorStoreFileBatchRequestWithExtraBody": {
"type": "object",
"properties": {
"vector_store_id": {
"type": "string",
"description": "The ID of the vector store to create the file batch for"
},
"file_ids": {
"type": "array",
"items": {
@ -14900,7 +14906,6 @@
},
"additionalProperties": false,
"required": [
"vector_store_id",
"file_ids"
],
"title": "OpenAICreateVectorStoreFileBatchRequestWithExtraBody",