From 8dbc71da0ca06b4c91c9dec8990d292b5279241e Mon Sep 17 00:00:00 2001 From: Merwane Hamadi Date: Fri, 14 Apr 2023 11:15:17 -0700 Subject: [PATCH] added message to redirect users --- scripts/main.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 scripts/main.py diff --git a/scripts/main.py b/scripts/main.py new file mode 100644 index 0000000000..b451e97797 --- /dev/null +++ b/scripts/main.py @@ -0,0 +1,9 @@ +from colorama import init, Style + +# Initialize colorama +init(autoreset=True) + +# Use the bold ANSI style +print(f"""{Style.BRIGHT}Please run: +python -m autogpt +""")