Skip to content

Commit 49c7273

Browse files
committed
make console ui better
1 parent 109571b commit 49c7273

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

AgentCrew/modules/chat/console_ui.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ def listen(self, event: str, data: Any = None):
8888
self.display_thinking_started(data) # data is agent_name
8989
elif event == "thinking_chunk":
9090
self.display_thinking_chunk(data) # data is the thinking chunk
91+
elif event == "user_message_created":
92+
self.console.print("\n")
9193
elif event == "response_chunk":
9294
self.stop_loading_animation() # Stop loading on first chunk
9395
_, assistant_response = data

0 commit comments

Comments
 (0)