From 8a8e047599b0a319f39deae97bac9bd03bcf274a Mon Sep 17 00:00:00 2001 From: Yaniv Perez Date: Sat, 20 Sep 2025 19:36:03 +0700 Subject: [PATCH] Update llm.ts Should use the correct Azure default options (not openAi) --- plugins/openai/src/llm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/openai/src/llm.ts b/plugins/openai/src/llm.ts index 39e36518b..178130aef 100644 --- a/plugins/openai/src/llm.ts +++ b/plugins/openai/src/llm.ts @@ -118,7 +118,7 @@ export class LLM extends llm.LLM { temperature?: number; } = defaultAzureLLMOptions, ): LLM { - opts = { ...defaultLLMOptions, ...opts }; + opts = { ...defaultAzureLLMOptions, ...opts }; if (opts.apiKey === undefined) { throw new Error('Azure API key is required, whether as an argument or as $AZURE_API_KEY'); }