From b1cb1cce7573df437701a98fdeadbca182348018 Mon Sep 17 00:00:00 2001 From: wolfy Date: Sun, 31 May 2026 17:19:07 -0500 Subject: [PATCH] fix: tempurature was too low --- agents/ollama.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agents/ollama.ts b/agents/ollama.ts index 51baa55..3a40b39 100644 --- a/agents/ollama.ts +++ b/agents/ollama.ts @@ -162,7 +162,7 @@ async function runOllamaLoop(ctx: AgentRunContext): Promise { tools, keep_alive: -1, think: false, - options: { num_ctx: 262144, temperature: 0 }, + options: { num_ctx: 262144, temperature: 0.1 }, }), { delaysMs: [3_000, 8_000],