aboutsummaryrefslogtreecommitdiff
path: root/cli.py
diff options
context:
space:
mode:
authorGravatar SwiftyOS <craigswift13@gmail.com> 2023-09-15 16:43:40 +0200
committerGravatar SwiftyOS <craigswift13@gmail.com> 2023-09-15 16:43:40 +0200
commita216197e347640dda6a9edb817279b35074e3677 (patch)
tree5b753beff9654a6d1354b499875c5120219a2ecd /cli.py
parentUpdated docs (diff)
downloadAuto-GPT-a216197e347640dda6a9edb817279b35074e3677.tar.gz
Auto-GPT-a216197e347640dda6a9edb817279b35074e3677.tar.bz2
Auto-GPT-a216197e347640dda6a9edb817279b35074e3677.zip
changed the start message
Diffstat (limited to 'cli.py')
-rw-r--r--cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli.py b/cli.py
index ae5d3275c..8b2453499 100644
--- a/cli.py
+++ b/cli.py
@@ -42,7 +42,7 @@ def create(agent_name):
new_agent_dir = f'./autogpts/{agent_name}'
if not os.path.exists(new_agent_dir):
shutil.copytree('./autogpts/forge', new_agent_dir)
- click.echo(click.style(f"🎉 New agent '{agent_name}' created and switched to the new directory in autogpts folder.", fg='green'))
+ click.echo(click.style(f"🎉 New agent '{agent_name}' created. The code for your new agent is in: autogpts/{agent_name}", fg='green'))
else:
click.echo(click.style(f"😞 Agent '{agent_name}' already exists. Enter a different name for your agent", fg='red'))
except Exception as e: