mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-24 08:50:01 +00:00
chore: Migrating VectorDB to use OpenAI compatible identifier
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
This commit is contained in:
parent
b094960199
commit
ddb29b306c
9 changed files with 44 additions and 22 deletions
10
docs/_static/llama-stack-spec.html
vendored
10
docs/_static/llama-stack-spec.html
vendored
|
|
@ -11285,6 +11285,9 @@
|
|||
},
|
||||
"embedding_dimension": {
|
||||
"type": "integer"
|
||||
},
|
||||
"provider_vector_db_name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
|
|
@ -13543,7 +13546,8 @@
|
|||
},
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"name"
|
||||
"name",
|
||||
"provider_vector_db_id"
|
||||
],
|
||||
"title": "OpenaiCreateVectorStoreRequest"
|
||||
},
|
||||
|
|
@ -15571,6 +15575,10 @@
|
|||
"provider_vector_db_id": {
|
||||
"type": "string",
|
||||
"description": "The identifier of the vector database in the provider."
|
||||
},
|
||||
"provider_vector_db_name": {
|
||||
"type": "string",
|
||||
"description": "The name of the vector database."
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
|
|
|
|||
6
docs/_static/llama-stack-spec.yaml
vendored
6
docs/_static/llama-stack-spec.yaml
vendored
|
|
@ -7944,6 +7944,8 @@ components:
|
|||
type: string
|
||||
embedding_dimension:
|
||||
type: integer
|
||||
provider_vector_db_name:
|
||||
type: string
|
||||
additionalProperties: false
|
||||
required:
|
||||
- identifier
|
||||
|
|
@ -9461,6 +9463,7 @@ components:
|
|||
additionalProperties: false
|
||||
required:
|
||||
- name
|
||||
- provider_vector_db_id
|
||||
title: OpenaiCreateVectorStoreRequest
|
||||
VectorStoreFileCounts:
|
||||
type: object
|
||||
|
|
@ -10897,6 +10900,9 @@ components:
|
|||
type: string
|
||||
description: >-
|
||||
The identifier of the vector database in the provider.
|
||||
provider_vector_db_name:
|
||||
type: string
|
||||
description: The name of the vector database.
|
||||
additionalProperties: false
|
||||
required:
|
||||
- vector_db_id
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue