WhatsApp bot which interacts with ChatGPT. Read this blog to learn how to create your own.
-
Make sure that python and virual environment is installed.
-
Create a new virtual environment
# one time
virtualenv -p $(which python3) pyenv
# everytime you want to run the server
source pyenv/bin/activate
- Now install the requirements
pip install -r requirements.txt
- Now run the server
python bot.py
- Once
bot.py
is running successfully, follow this blog for next instructions.