- Create the environment
python -m venv venv
- activate the environment Windows:
venv\Scripts\activate.bat
Unix:
source venv/bin/activate
- Install requirements
pip install -r requirements.txt
- create a file called .env in the working directory
- save your discord & Open AI api key like this
DISCORD_API_KEY='your-api-key'
OPENAI_API_KEY='your-api-key'