5.8 KiB
💾 Installation
⚠️ OpenAI API Keys Configuration
Get your OpenAI API key from: https://platform.openai.com/account/api-keys.
To use OpenAI API key for Auto-GPT, you NEED to have billing set up (AKA paid account).
You can set up paid account at https://platform.openai.com/account/billing/overview.
Important: It's highly recommended that you track your usage on the Usage page. You can also set limits on how much you spend on the Usage limits page.
PLEASE ENSURE YOU HAVE DONE THIS STEP BEFORE PROCEEDING. OTHERWISE, NOTHING WILL WORK!
General setup
-
Make sure you have one of the environments listed under requirements set up.
To execute the following commands, open a CMD, Bash, or Powershell window by navigating to a folder on your computer and typing
CMDin the folder path at the top, then press enter. Make sure you have Git installed for your O/S. -
Clone the repository using Git, or download the latest stable release (
Source code (zip), at the bottom of the page).
git clone -b stable https://github.com/Significant-Gravitas/Auto-GPT.git
- Navigate to the directory where you downloaded the repository.
cd Auto-GPT
-
Configure Auto-GPT:
- Find the file named
.env.templatein the mainAuto-GPTfolder. This file may be hidden by default in some operating systems due to the dot prefix. To reveal hidden files, follow the instructions for your specific operating system (e.g., in Windows, click on the "View" tab in File Explorer and check the "Hidden items" box; in macOS, press Cmd + Shift + .). - Create a copy of this file and call it
.envby removing thetemplateextension. The easiest way is to do this in a command prompt/terminal windowcp .env.template .env. - Open the
.envfile in a text editor. - Find the line that says
OPENAI_API_KEY=. - After the
"=", enter your unique OpenAI API Key (without any quotes or spaces). - Enter any other API keys or Tokens for services you would like to use. To activate and adjust a setting, remove the
#prefix. - Save and close the
.envfile.
You have now configured Auto-GPT.
Notes:
- See OpenAI API Keys Configuration to get your OpenAI API key.
- Get your ElevenLabs API key from: ElevenLabs. You can view your xi-api-key using the "Profile" tab on the website.
- If you want to use GPT on an Azure instance, set
USE_AZUREtoTrueand then follow these steps:- Rename
azure.yaml.templatetoazure.yamland provide the relevantazure_api_base,azure_api_versionand all the deployment IDs for the relevant models in theazure_model_mapsection:fast_llm_model_deployment_id- your gpt-3.5-turbo or gpt-4 deployment IDsmart_llm_model_deployment_id- your gpt-4 deployment IDembedding_model_deployment_id- your text-embedding-ada-002 v2 deployment ID
- Rename
- Find the file named
# Please specify all of these values as double-quoted strings
# Replace string in angled brackets (<>) to your own ID
azure_model_map:
fast_llm_model_deployment_id: "<my-fast-llm-deployment-id>"
...
Details can be found here: https://pypi.org/project/openai/ in the Microsoft Azure Endpoints section and here: learn.microsoft.com for the embedding model.
If you're on Windows you may need to install msvc-170.
- Follow the further instructions for running Auto-GPT with Docker (recommended), or Docker-less
Run with Docker
Easiest is to run with docker-compose:
docker-compose build auto-gpt
docker-compose run --rm auto-gpt
By default, this will also start and attach a Redis memory backend. For related settings, see Memory > Redis setup.
You can also build and run it with "vanilla" docker commands:
docker build -t auto-gpt .
docker run -it --env-file=.env -v $PWD:/app auto-gpt
You can pass extra arguments, for instance, running with --gpt3only and --continuous mode:
docker-compose run --rm auto-gpt --gpt3only --continuous
docker run -it --env-file=.env -v $PWD:/app --rm auto-gpt --gpt3only --continuous
Alternatively, you can pull the latest release directly from Docker Hub and run that:
docker run -it --env OPENAI_API_KEY='your-key-here' --rm significantgravitas/auto-gpt
Or with ai_settings.yml presets mounted:
docker run -it --env OPENAI_API_KEY='your-key-here' -v $PWD/ai_settings.yaml:/app/ai_settings.yaml --rm significantgravitas/auto-gpt
Run without Docker
Simply run ./run.sh (Linux/macOS) or .\run.bat (Windows) in your terminal. This will install any necessary Python packages and launch Auto-GPT.
Run with Dev Container
-
Install the Remote - Containers extension in VS Code.
-
Open command palette and type in Dev Containers: Open Folder in Container.
-
Run
./run.sh.
