From 8dc6f1dc8fe00f4d4ba164383226208dc6d8a858 Mon Sep 17 00:00:00 2001 From: 0xallam Date: Thu, 15 Jan 2026 18:56:48 -0800 Subject: [PATCH] fix(llm): remove hardcoded temperature from dedupe check Allow the model's default temperature setting to be used instead of forcing temperature=0 for duplicate detection. --- strix/llm/dedupe.py | 1 - 1 file changed, 1 deletion(-) diff --git a/strix/llm/dedupe.py b/strix/llm/dedupe.py index 31aa74d..9edd6b7 100644 --- a/strix/llm/dedupe.py +++ b/strix/llm/dedupe.py @@ -180,7 +180,6 @@ def check_duplicate( "model": model_name, "messages": messages, "timeout": 120, - "temperature": 0, } if api_key: completion_kwargs["api_key"] = api_key