feat: Add option to show announcements only when verbose mode is enabled

This commit is contained in:
Paul Gauthier 2024-09-27 12:12:35 -07:00 committed by Paul Gauthier (aider)
parent 1971285345
commit a230fa10b3

View file

@ -32,7 +32,9 @@ class ArchitectCoder(AskCoder):
editor_coder = Coder.create(**new_kwargs)
editor_coder.cur_messages = []
editor_coder.done_messages = []
editor_coder.show_announcements()
if self.verbose:
editor_coder.show_announcements()
editor_coder.run(with_message=content, preproc=False)