From 2c6338fd3b8926cc6f6984ebf4cdc89b4bea8f30 Mon Sep 17 00:00:00 2001 From: Toran Bruce Richards Date: Sat, 1 Apr 2023 16:21:57 +0100 Subject: [PATCH 1/2] Update README.md --- README.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e483e027..6e04f3aa 100644 --- a/README.md +++ b/README.md @@ -43,36 +43,46 @@ Optional: To install Auto-GPT, follow these steps: -1. Clone the repository: +0. Make sure you have all the **requirements** above, if not, install/get them. +*The following commands should be executed in a CMD, Bash or Powershell window. To do this, go to a folder on your computer, click in the folder path at the top and type CMD, then press enter.* + +1. Clone the repository: +For this step you need Git installed, but you can just download the zip file instead by clicking the button at the top of this page ☝️ ``` git clone https://github.com/Torantulino/Auto-GPT.git ``` 2. Navigate to the project directory: - +*(Type this into your CMD window, you're aiming to navigate the CMD window to the "scripts" folder you just downloaded)* ``` $ cd 'Auto-GPT/scripts' ``` 3. Install the required dependencies: - +*(Again, type this into your CMD window)* ``` pip install -r requirements.txt ``` 4. Edit the file named "keys.py" in the "scripts" directory to add your OpenAI API key (and eleven labs key if you want speech): - +*(Open the keys.py file in a text editor and follow the instructions inside, save it after)* ## 🔧 Usage 1. Run the Python script in your terminal: +*(Type this into your CMD window)* ``` python main.py ``` 2. After each of AUTO-GPT's actions, type "NEXT COMMAND" to authorise them to continue. 3. To exit the program, type "exit" and press Enter. +## 🗣️ Speech Mode +``` +python main.py speach-mode +``` + ## 💀 Continuous Mode ⚠️ Run the AI **without** user authorisation, 100% automated. Continuous mode is not recommended. From be851e391b9fd028ae721ce5918640f701cb0ffc Mon Sep 17 00:00:00 2001 From: egokick Date: Sat, 1 Apr 2023 15:59:33 -0700 Subject: [PATCH 2/2] Add missing docker requirement --- scripts/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/requirements.txt b/scripts/requirements.txt index ca10628d..0e2e52a7 100644 --- a/scripts/requirements.txt +++ b/scripts/requirements.txt @@ -4,4 +4,5 @@ googlesearch_python==1.1.0 openai==0.27.0 playsound==1.2.2 readability_lxml==0.8.1 -requests==2.25.1 \ No newline at end of file +requests==2.25.1 +docker==6.0.1