mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-24 06:58:04 +00:00
reverting to original call order for a simpler change
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
This commit is contained in:
parent
56811a1483
commit
d361154102
6 changed files with 25 additions and 17 deletions
11
docs/_static/llama-stack-spec.html
vendored
11
docs/_static/llama-stack-spec.html
vendored
|
|
@ -15610,10 +15610,6 @@
|
|||
"type": "string",
|
||||
"description": "The identifier of the vector database to register."
|
||||
},
|
||||
"provider_vector_db_id": {
|
||||
"type": "string",
|
||||
"description": "The identifier of the vector database in the provider."
|
||||
},
|
||||
"embedding_model": {
|
||||
"type": "string",
|
||||
"description": "The embedding model to use."
|
||||
|
|
@ -15628,13 +15624,16 @@
|
|||
},
|
||||
"vector_db_name": {
|
||||
"type": "string",
|
||||
"description": "The name of the vector database."
|
||||
"description": "The name of the vector database. :param provider_vector_db_id: The identifier of the vector database in the provider."
|
||||
},
|
||||
"provider_vector_db_id": {
|
||||
"type": "string",
|
||||
"description": "The identifier of the vector database in the provider."
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"vector_db_id",
|
||||
"provider_vector_db_id",
|
||||
"embedding_model"
|
||||
],
|
||||
"title": "RegisterVectorDbRequest"
|
||||
|
|
|
|||
13
docs/_static/llama-stack-spec.yaml
vendored
13
docs/_static/llama-stack-spec.yaml
vendored
|
|
@ -10922,10 +10922,6 @@ components:
|
|||
type: string
|
||||
description: >-
|
||||
The identifier of the vector database to register.
|
||||
provider_vector_db_id:
|
||||
type: string
|
||||
description: >-
|
||||
The identifier of the vector database in the provider.
|
||||
embedding_model:
|
||||
type: string
|
||||
description: The embedding model to use.
|
||||
|
|
@ -10937,11 +10933,16 @@ components:
|
|||
description: The identifier of the provider.
|
||||
vector_db_name:
|
||||
type: string
|
||||
description: The name of the vector database.
|
||||
description: >-
|
||||
The name of the vector database. :param provider_vector_db_id: The identifier
|
||||
of the vector database in the provider.
|
||||
provider_vector_db_id:
|
||||
type: string
|
||||
description: >-
|
||||
The identifier of the vector database in the provider.
|
||||
additionalProperties: false
|
||||
required:
|
||||
- vector_db_id
|
||||
- provider_vector_db_id
|
||||
- embedding_model
|
||||
title: RegisterVectorDbRequest
|
||||
ResumeAgentTurnRequest:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue