From f83bd06e89ef1a4cd5516122eba4c688c0ba1115 Mon Sep 17 00:00:00 2001 From: ItzCrazyKns <95534749+ItzCrazyKns@users.noreply.github.com> Date: Thu, 27 Nov 2025 11:10:04 +0530 Subject: [PATCH] feat(ollama-llm): remove explicit think parameter setting --- src/lib/models/providers/ollama/ollamaLLM.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/models/providers/ollama/ollamaLLM.ts b/src/lib/models/providers/ollama/ollamaLLM.ts index 05869ca..1089cb9 100644 --- a/src/lib/models/providers/ollama/ollamaLLM.ts +++ b/src/lib/models/providers/ollama/ollamaLLM.ts @@ -98,7 +98,6 @@ class OllamaLLM extends BaseLLM { model: this.config.model, messages: input.messages, format: z.toJSONSchema(input.schema), - think: false, options: { top_p: this.config.options?.topP, temperature: 0.7, @@ -126,7 +125,6 @@ class OllamaLLM extends BaseLLM { messages: input.messages, format: z.toJSONSchema(input.schema), stream: true, - think: false, options: { top_p: this.config.options?.topP, temperature: 0.7,