From 3817aa2868582e80abfeea663ac4aec11f2cfe19 Mon Sep 17 00:00:00 2001 From: mrT23 Date: Thu, 27 Feb 2025 10:55:01 +0200 Subject: [PATCH] fix: remove redundant temperature logging in litellm handler --- pr_agent/algo/ai_handlers/litellm_ai_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pr_agent/algo/ai_handlers/litellm_ai_handler.py b/pr_agent/algo/ai_handlers/litellm_ai_handler.py index ba557979..e2894f1b 100644 --- a/pr_agent/algo/ai_handlers/litellm_ai_handler.py +++ b/pr_agent/algo/ai_handlers/litellm_ai_handler.py @@ -232,7 +232,7 @@ class LiteLLMAIHandler(BaseAiHandler): # Add temperature only if model supports it if model not in self.no_support_temperature_models and not get_settings().config.custom_reasoning_model: - get_logger().info(f"Adding temperature with value {temperature} to model {model}.") + # get_logger().info(f"Adding temperature with value {temperature} to model {model}.") kwargs["temperature"] = temperature # Add reasoning_effort if model supports it