Engel Nyst 1 год назад
Родитель
Сommit
e70767c226
1 измененных файлов с 1 добавлено и 3 удалено
  1. 1 3
      opendevin/llm/llm.py

+ 1 - 3
opendevin/llm/llm.py

@@ -44,9 +44,7 @@ class LLM:
             }],
             num_retries=self.num_retries,
             allowed_fails=self.num_retries, # We allow all retries to fail, so they can retry instead of going into "cooldown"
-            cooldown_time=self.cooldown_time,
-            # set_verbose=True,
-            # debug_level="DEBUG"
+            cooldown_time=self.cooldown_time
         )
         self._completion = partial(self._router.completion, model=self.model_name)