From 66f7cfb38f16fd5af6e75f3cb2d0c09d31b871c4 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 6 Jul 2024 16:40:26 -0300 Subject: [PATCH] Set litellm.drop_params=True #805 --- aider/llm.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/llm.py b/aider/llm.py index 73f7a25a5..82f86027a 100644 --- a/aider/llm.py +++ b/aider/llm.py @@ -20,6 +20,7 @@ class LazyLiteLLM: self._lazy_module.suppress_debug_info = True self._lazy_module.set_verbose = False + self._lazy_module.drop_params = True return getattr(self._lazy_module, name)