From b5b8089e22eed943207061792f89ce0916ad7d0e Mon Sep 17 00:00:00 2001 From: Waldek Mastykarz Date: Tue, 6 May 2025 07:49:08 +0200 Subject: [PATCH] Fixes language model configuration in the schema. Closes #1163 --- schemas/v0.27.0/rc.schema.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/schemas/v0.27.0/rc.schema.json b/schemas/v0.27.0/rc.schema.json index 978808da..0ff81cf5 100644 --- a/schemas/v0.27.0/rc.schema.json +++ b/schemas/v0.27.0/rc.schema.json @@ -55,8 +55,8 @@ "client": { "type": "string", "enum": [ - "LMStudio", - "Ollama" + "Ollama", + "OpenAI" ], "description": "The client to use for the local language model." }, @@ -184,4 +184,4 @@ "plugins" ], "additionalProperties": true -} \ No newline at end of file +}