BingGPT-Discord-Bot is a Discord bot that can be invited to any Discord servers and be interact with Microsoft's Bing Chat. It's reverse engineered API of Microsoft's Bing Chat which is currently running with GPT-4 and recently started to support Text-to-Image generation
Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1474.0
). You can do this easily with an extension like "User-Agent Switcher and Manager" for Chrome and Firefox.Inspect
).Network
tab to view all requests sent to Copilot.create?bundleVersion=XYZ
and click on it.Cookie:
field.BING_COOKIES
value in the .env
file with the copied value. See .example.env
file to get the right format.Be sure that Docker and docker-compose are installed on your system
Complete the installation section above up to 3th step (including the 3th)
Build the project
docker-compose build
Run the application
Running in the shell/terminal
docker-compose up
Running in detached mode (similar as a background process)
docker-compose up -d
Clone the repo and change directory to repo folder
git clone https://github.com/ediziks/BingGPT-Discord-Bot.git
cd BingGPT-Discord-Bot
Place cookies.json
file into the main path. See Getting authentication (Required) section above for more information. Also, check example.cookies.json
file to see the right path
Set the environment variables (BOT_TOKEN
& SERVER_ID
) in the .env
file. See .example.env
file to get the right format and the path. Check creating Discord bot and getting the token for more details about the BOT_TOKEN
. And, the SERVER_ID
can be simply copied by right clicking the server logo you want to invite the bot, and selecting COPY_ID
. See how to get Discord server id for more information.
Install the requirements
pip install -r requirements.txt
Make bot.py
and dcbot.sh
files executable
chmod +x src/bot.py dcbot.sh
The bot can be launched after completing the steps below. There are two alternatives to do so;
1st method: Running the bot with python command in the terminal
python src/bot.py
2nd method: Running the bot as a background process (Preferred)
./dcbot.sh
src/bot.log
ps ax | grep bot.py
sudo kill -9 <proces_id>
See how to invite a bot to Discord server for more information about the bot invitation. Make sure that the bot permissions look like as in the image below before generating the invitation url
/ask <prompt> - Ask BingGPT a question
/imagine <prompt> - Ask BingGPT to imagine visuals
/reset - Reset the conversation
/hardreset - Reset the session
Currently, the /imagine
command doesn't work as expected. Suggestion and PRs are more than welcome.