feat: Add terminal bell notification when LLM processing is complete

This commit is contained in:
Paul Gauthier (aider) 2025-03-06 11:41:32 -08:00
parent 99424a9f53
commit 3c0eae4180
2 changed files with 28 additions and 0 deletions

View file

@ -1279,6 +1279,9 @@ class Coder:
def send_message(self, inp):
self.event("message_send_starting")
# Notify IO that LLM processing is starting
self.io.llm_started()
self.cur_messages += [
dict(role="user", content=inp),