We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 109571b commit 49c7273Copy full SHA for 49c7273
AgentCrew/modules/chat/console_ui.py
@@ -88,6 +88,8 @@ def listen(self, event: str, data: Any = None):
88
self.display_thinking_started(data) # data is agent_name
89
elif event == "thinking_chunk":
90
self.display_thinking_chunk(data) # data is the thinking chunk
91
+ elif event == "user_message_created":
92
+ self.console.print("\n")
93
elif event == "response_chunk":
94
self.stop_loading_animation() # Stop loading on first chunk
95
_, assistant_response = data
0 commit comments