mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-12 12:06:04 +00:00
more fixes
This commit is contained in:
parent
bf59d26362
commit
e5a1cdf554
9 changed files with 43 additions and 146 deletions
30
docs/static/llama-stack-spec.html
vendored
30
docs/static/llama-stack-spec.html
vendored
|
|
@ -3357,17 +3357,7 @@
|
|||
],
|
||||
"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": [
|
||||
{
|
||||
"name": "vector_store_id",
|
||||
"in": "path",
|
||||
"description": "The ID of the vector store to create the file batch for.",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"parameters": [],
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
|
|
@ -12680,19 +12670,6 @@
|
|||
]
|
||||
},
|
||||
"description": "Set of key-value pairs that can be attached to the vector store"
|
||||
},
|
||||
"embedding_model": {
|
||||
"type": "string",
|
||||
"description": "(Optional) The embedding model to use for this vector store"
|
||||
},
|
||||
"embedding_dimension": {
|
||||
"type": "integer",
|
||||
"default": 384,
|
||||
"description": "(Optional) The dimension of the embedding vectors (default: 384)"
|
||||
},
|
||||
"provider_id": {
|
||||
"type": "string",
|
||||
"description": "(Optional) The ID of the provider to use for this vector store"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
|
|
@ -12870,6 +12847,10 @@
|
|||
"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": {
|
||||
|
|
@ -12910,6 +12891,7 @@
|
|||
},
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"vector_store_id",
|
||||
"file_ids"
|
||||
],
|
||||
"title": "OpenAICreateVectorStoreFileBatchRequestWithExtraBody",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue