mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 22:34:59 +00:00
cleanup
This commit is contained in:
parent
16dea76691
commit
d1d498bb24
2 changed files with 5 additions and 4 deletions
|
@ -367,14 +367,16 @@ class Coder:
|
|||
|
||||
assert self.summarizer_thread is None
|
||||
assert self.summarized_done_messages is None
|
||||
print("launching working")
|
||||
if self.verbose:
|
||||
self.io.tool_output("Starting to summarize chat history.")
|
||||
|
||||
self.summarizer_thread = threading.Thread(target=self.summarize_worker)
|
||||
self.summarizer_thread.start()
|
||||
|
||||
def summarize_worker(self):
|
||||
print("working!")
|
||||
self.summarized_done_messages = self.summarizer.summarize(self.done_messages)
|
||||
print("done!")
|
||||
if self.verbose:
|
||||
self.io.tool_output("Finished summarizing chat history.")
|
||||
|
||||
def summarize_end(self):
|
||||
if self.summarizer_thread is None:
|
||||
|
|
|
@ -16,7 +16,6 @@ class ChatSummary:
|
|||
def too_big(self, messages):
|
||||
sized = self.tokenize(messages)
|
||||
total = sum(tokens for tokens, _msg in sized)
|
||||
dump(total, self.max_tokens)
|
||||
return total > self.max_tokens
|
||||
|
||||
def tokenize(self, messages):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue