chore(pre-commit): apply codegen and permissions fixes

This commit is contained in:
Habeb Nawatha 2025-09-11 11:57:07 +03:00
parent 820ec43eed
commit e6a5ad5e35
2 changed files with 10 additions and 8 deletions

View file

@ -16632,14 +16632,14 @@
"type": "string",
"description": "The embedding model to use."
},
"embedding_dimension": {
"type": "integer",
"description": "The dimension of the embedding model."
},
"provider_id": {
"type": "string",
"description": "The identifier of the provider."
},
"embedding_dimension": {
"type": "integer",
"description": "The dimension of the embedding model."
},
"vector_db_name": {
"type": "string",
"description": "The name of the vector database."
@ -16652,7 +16652,8 @@
"additionalProperties": false,
"required": [
"vector_db_id",
"embedding_model"
"embedding_model",
"provider_id"
],
"title": "RegisterVectorDbRequest"
},

View file

@ -12367,12 +12367,12 @@ components:
embedding_model:
type: string
description: The embedding model to use.
embedding_dimension:
type: integer
description: The dimension of the embedding model.
provider_id:
type: string
description: The identifier of the provider.
embedding_dimension:
type: integer
description: The dimension of the embedding model.
vector_db_name:
type: string
description: The name of the vector database.
@ -12384,6 +12384,7 @@ components:
required:
- vector_db_id
- embedding_model
- provider_id
title: RegisterVectorDbRequest
RerankRequest:
type: object