aboutsummaryrefslogtreecommitdiff
path: root/cli.py
diff options
context:
space:
mode:
authorGravatar SwiftyOS <craigswift13@gmail.com> 2023-09-16 19:53:28 +0200
committerGravatar SwiftyOS <craigswift13@gmail.com> 2023-09-16 19:53:28 +0200
commitcbcdcad43c0d070341b85fa3bb3ec77f80d22c72 (patch)
treef06c1d2d899cdfbb9c07d1cc94d361141912000f /cli.py
parentremoved swifty arena entry (diff)
downloadAuto-GPT-cbcdcad43c0d070341b85fa3bb3ec77f80d22c72.tar.gz
Auto-GPT-cbcdcad43c0d070341b85fa3bb3ec77f80d22c72.tar.bz2
Auto-GPT-cbcdcad43c0d070341b85fa3bb3ec77f80d22c72.zip
Added ascii art to cli
Diffstat (limited to 'cli.py')
-rw-r--r--cli.py25
1 files changed, 24 insertions, 1 deletions
diff --git a/cli.py b/cli.py
index a51d8abd3..9c67f10f3 100644
--- a/cli.py
+++ b/cli.py
@@ -1,3 +1,9 @@
+"""
+This is a minimal file intended to be run by users to help them manage the autogpt projects.
+
+If you want to contribute, please use only libraries that come as part of Python.
+To ensure efficiency, add the imports to the functions so only what is needed is imported.
+"""
try:
import click
import github
@@ -20,11 +26,28 @@ def setup():
import os
import subprocess
+ click.echo(
+ click.style(
+ """
+ d8888 888 .d8888b. 8888888b. 88888888888
+ d88888 888 d88P Y88b 888 Y88b 888
+ d88P888 888 888 888 888 888 888
+ d88P 888 888 888 888888 .d88b. 888 888 d88P 888
+ d88P 888 888 888 888 d88""88b 888 88888 8888888P" 888
+ d88P 888 888 888 888 888 888 888 888 888 888
+ d8888888888 Y88b 888 Y88b. Y88..88P Y88b d88P 888 888
+d88P 888 "Y88888 "Y888 "Y88P" "Y8888P88 888 888
+
+""",
+ fg="green",
+ )
+ )
+
script_dir = os.path.dirname(os.path.realpath(__file__))
setup_script = os.path.join(script_dir, "setup.sh")
if os.path.exists(setup_script):
+ click.echo(click.style("🚀 Setup initiated...\n", fg="green"))
subprocess.Popen([setup_script], cwd=script_dir)
- click.echo(click.style("🚀 Setup initiated", fg="green"))
else:
click.echo(
click.style(