feat: use weak model first for summarizer in Coder

This commit is contained in:
Paul Gauthier (aider) 2024-08-01 14:55:22 -03:00
parent ede3f3dfcb
commit ff3d067d94

View file

@ -321,7 +321,7 @@ class Coder:
)
self.summarizer = summarizer or ChatSummary(
[self.main_model, self.main_model.weak_model],
[self.main_model.weak_model, self.main_model],
self.main_model.max_chat_history_tokens,
)