mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 22:34:59 +00:00
Advise the user when chat history is being summarized
This commit is contained in:
parent
844194c268
commit
0db9d210d7
2 changed files with 18 additions and 9 deletions
|
@ -360,7 +360,9 @@ class Coder:
|
|||
|
||||
def move_back_cur_messages(self, message):
|
||||
self.done_messages += self.cur_messages
|
||||
self.done_messages = self.summarizer.summarize(self.done_messages)
|
||||
if self.summarizer.too_big(self.done_messages):
|
||||
self.io.tool_output("Summarizing chat history...")
|
||||
self.done_messages = self.summarizer.summarize(self.done_messages)
|
||||
|
||||
if message:
|
||||
self.done_messages += [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue