mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-24 14:30:01 +00:00
feat: configure vector-io provider with an embedding model
Signed-off-by: Mustafa Elbehery <melbeher@redhat.com>
This commit is contained in:
parent
1f0766308d
commit
d8f013b35a
29 changed files with 228 additions and 24 deletions
9
docs/_static/llama-stack-spec.html
vendored
9
docs/_static/llama-stack-spec.html
vendored
|
|
@ -16306,15 +16306,15 @@
|
|||
},
|
||||
"embedding_model": {
|
||||
"type": "string",
|
||||
"description": "The embedding model to use."
|
||||
"description": "The embedding model to use (optional if provider has defaults)."
|
||||
},
|
||||
"embedding_dimension": {
|
||||
"type": "integer",
|
||||
"description": "The dimension of the embedding model."
|
||||
"description": "The dimension of the embedding model (optional if provider has defaults)."
|
||||
},
|
||||
"provider_id": {
|
||||
"type": "string",
|
||||
"description": "The identifier of the provider."
|
||||
"description": "The identifier of the provider (can provide embedding defaults)."
|
||||
},
|
||||
"vector_db_name": {
|
||||
"type": "string",
|
||||
|
|
@ -16327,8 +16327,7 @@
|
|||
},
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"vector_db_id",
|
||||
"embedding_model"
|
||||
"vector_db_id"
|
||||
],
|
||||
"title": "RegisterVectorDbRequest"
|
||||
},
|
||||
|
|
|
|||
10
docs/_static/llama-stack-spec.yaml
vendored
10
docs/_static/llama-stack-spec.yaml
vendored
|
|
@ -12114,13 +12114,16 @@ components:
|
|||
The identifier of the vector database to register.
|
||||
embedding_model:
|
||||
type: string
|
||||
description: The embedding model to use.
|
||||
description: >-
|
||||
The embedding model to use (optional if provider has defaults).
|
||||
embedding_dimension:
|
||||
type: integer
|
||||
description: The dimension of the embedding model.
|
||||
description: >-
|
||||
The dimension of the embedding model (optional if provider has defaults).
|
||||
provider_id:
|
||||
type: string
|
||||
description: The identifier of the provider.
|
||||
description: >-
|
||||
The identifier of the provider (can provide embedding defaults).
|
||||
vector_db_name:
|
||||
type: string
|
||||
description: The name of the vector database.
|
||||
|
|
@ -12131,7 +12134,6 @@ components:
|
|||
additionalProperties: false
|
||||
required:
|
||||
- vector_db_id
|
||||
- embedding_model
|
||||
title: RegisterVectorDbRequest
|
||||
ResumeAgentTurnRequest:
|
||||
type: object
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue