From d302f228f91fd99e044aa9ea55a954a78d3caea4 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 4 Feb 2025 11:37:01 -0800 Subject: [PATCH] fix: Update method call to use model's simple_send_with_retries --- aider/history.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/history.py b/aider/history.py index 4f22f3a8e..723feebe5 100644 --- a/aider/history.py +++ b/aider/history.py @@ -114,7 +114,7 @@ class ChatSummary: for model in self.models: try: - summary = simple_send_with_retries(model, summarize_messages) + summary = model.simple_send_with_retries(summarize_messages) if summary is not None: summary = prompts.summary_prefix + summary return [dict(role="user", content=summary)]