moving order of parameters

Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
This commit is contained in:
Francisco Javier Arceo 2025-07-11 15:20:36 -04:00
parent 7ae99f33e7
commit 22f2484edc
5 changed files with 16 additions and 16 deletions

View file

@ -15610,6 +15610,10 @@
"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."
@ -15622,10 +15626,6 @@
"type": "string",
"description": "The identifier of the provider."
},
"provider_vector_db_id": {
"type": "string",
"description": "The identifier of the vector database in the provider."
},
"vector_db_name": {
"type": "string",
"description": "The name of the vector database."
@ -15634,6 +15634,7 @@
"additionalProperties": false,
"required": [
"vector_db_id",
"provider_vector_db_id",
"embedding_model"
],
"title": "RegisterVectorDbRequest"

View file

@ -10922,6 +10922,10 @@ 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.
@ -10931,16 +10935,13 @@ components:
provider_id:
type: string
description: The identifier of the provider.
provider_vector_db_id:
type: string
description: >-
The identifier of the vector database in the provider.
vector_db_name:
type: string
description: The name of the vector database.
additionalProperties: false
required:
- vector_db_id
- provider_vector_db_id
- embedding_model
title: RegisterVectorDbRequest
ResumeAgentTurnRequest: