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), )