From 478bf5d4d3b5bc6c22fc0f5a2eb0051f6dbab598 Mon Sep 17 00:00:00 2001 From: Ahmed Allam Date: Sat, 15 Nov 2025 12:44:40 +0400 Subject: [PATCH] refactor(llm): remove unused temperature parameter from LLMConfig --- strix/llm/config.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/strix/llm/config.py b/strix/llm/config.py index 8bb6410..ea7163a 100644 --- a/strix/llm/config.py +++ b/strix/llm/config.py @@ -5,7 +5,6 @@ class LLMConfig: def __init__( self, model_name: str | None = None, - temperature: float = 0, enable_prompt_caching: bool = True, prompt_modules: list[str] | None = None, timeout: int | None = None, @@ -15,7 +14,6 @@ class LLMConfig: if not self.model_name: raise ValueError("STRIX_LLM environment variable must be set and not empty") - self.temperature = max(0.0, min(1.0, temperature)) self.enable_prompt_caching = enable_prompt_caching self.prompt_modules = prompt_modules or []