From 53060918e9df10dacf56fb09ddc0d08985e0cf81 Mon Sep 17 00:00:00 2001 From: Adolfo Reyna Date: Tue, 17 Mar 2026 00:55:31 -0400 Subject: [PATCH] Remove unsupported OpenAI temperature override --- engine_llm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine_llm.py b/engine_llm.py index 4a8804b..ecf47fd 100644 --- a/engine_llm.py +++ b/engine_llm.py @@ -99,7 +99,7 @@ def run_llm_processor(in_queue, out_queue, args): def call_openai(messages): response = requests.post( "https://api.openai.com/v1/chat/completions", - json={"model": args.post_correct_model, "messages": messages, "temperature": 0.1}, + json={"model": args.post_correct_model, "messages": messages}, headers={"Authorization": f"Bearer {api_key}", "Content-Type": "application/json"}, timeout=getattr(args, "post_correct_llm_timeout", 8.0), )