From 1ef2033396d161b3a6595a7db92323a90c9e6ed3 Mon Sep 17 00:00:00 2001 From: Brandon Hancock Date: Sat, 25 Jan 2025 16:53:39 -0500 Subject: [PATCH] Improve chat calling messages --- src/crewai/cli/cli.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/crewai/cli/cli.py b/src/crewai/cli/cli.py index 334759a6d..761cc52ad 100644 --- a/src/crewai/cli/cli.py +++ b/src/crewai/cli/cli.py @@ -350,7 +350,10 @@ def chat(): Start a conversation with the Crew, collecting user-supplied inputs, and using the Chat LLM to generate responses. """ - click.echo("Starting a conversation with the Crew") + click.secho( + "\nStarting a conversation with the Crew\n" "Type 'exit' or Ctrl+C to quit.\n", + ) + run_chat()