From c59169ac7db839d7aaecc5a1fc4f3bc6735fc1b7 Mon Sep 17 00:00:00 2001 From: aserrador Date: Thu, 5 Mar 2026 20:12:15 -0500 Subject: [PATCH] chore: Parametro del Modelo. --- src/naliiabot/bot/factories/llm_factory.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/naliiabot/bot/factories/llm_factory.py b/src/naliiabot/bot/factories/llm_factory.py index ff4259a..9244acb 100644 --- a/src/naliiabot/bot/factories/llm_factory.py +++ b/src/naliiabot/bot/factories/llm_factory.py @@ -44,7 +44,9 @@ class LLMFactory: def _create_deepseek(self): model_name = "deepseek-chat" model = ChatDeepSeek( - model=model_name + model=model_name, + temperature=1, + max_retries=3, ) return model