mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 04:04:14 +00:00
chore(pre-commit): apply codegen and permissions fixes
This commit is contained in:
parent
820ec43eed
commit
e6a5ad5e35
2 changed files with 10 additions and 8 deletions
11
docs/_static/llama-stack-spec.html
vendored
11
docs/_static/llama-stack-spec.html
vendored
|
@ -16632,14 +16632,14 @@
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "The embedding model to use."
|
"description": "The embedding model to use."
|
||||||
},
|
},
|
||||||
"embedding_dimension": {
|
|
||||||
"type": "integer",
|
|
||||||
"description": "The dimension of the embedding model."
|
|
||||||
},
|
|
||||||
"provider_id": {
|
"provider_id": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "The identifier of the provider."
|
"description": "The identifier of the provider."
|
||||||
},
|
},
|
||||||
|
"embedding_dimension": {
|
||||||
|
"type": "integer",
|
||||||
|
"description": "The dimension of the embedding model."
|
||||||
|
},
|
||||||
"vector_db_name": {
|
"vector_db_name": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "The name of the vector database."
|
"description": "The name of the vector database."
|
||||||
|
@ -16652,7 +16652,8 @@
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"required": [
|
"required": [
|
||||||
"vector_db_id",
|
"vector_db_id",
|
||||||
"embedding_model"
|
"embedding_model",
|
||||||
|
"provider_id"
|
||||||
],
|
],
|
||||||
"title": "RegisterVectorDbRequest"
|
"title": "RegisterVectorDbRequest"
|
||||||
},
|
},
|
||||||
|
|
7
docs/_static/llama-stack-spec.yaml
vendored
7
docs/_static/llama-stack-spec.yaml
vendored
|
@ -12367,12 +12367,12 @@ components:
|
||||||
embedding_model:
|
embedding_model:
|
||||||
type: string
|
type: string
|
||||||
description: The embedding model to use.
|
description: The embedding model to use.
|
||||||
embedding_dimension:
|
|
||||||
type: integer
|
|
||||||
description: The dimension of the embedding model.
|
|
||||||
provider_id:
|
provider_id:
|
||||||
type: string
|
type: string
|
||||||
description: The identifier of the provider.
|
description: The identifier of the provider.
|
||||||
|
embedding_dimension:
|
||||||
|
type: integer
|
||||||
|
description: The dimension of the embedding model.
|
||||||
vector_db_name:
|
vector_db_name:
|
||||||
type: string
|
type: string
|
||||||
description: The name of the vector database.
|
description: The name of the vector database.
|
||||||
|
@ -12384,6 +12384,7 @@ components:
|
||||||
required:
|
required:
|
||||||
- vector_db_id
|
- vector_db_id
|
||||||
- embedding_model
|
- embedding_model
|
||||||
|
- provider_id
|
||||||
title: RegisterVectorDbRequest
|
title: RegisterVectorDbRequest
|
||||||
RerankRequest:
|
RerankRequest:
|
||||||
type: object
|
type: object
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue