Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexistm/gpt3-discord-bot
This a very basic discord bot linking to GPT3 (openai and AI21). By defaults it is Kirby, but can be any real or virtual bot (just need more or less training prompt).
https://github.com/alexistm/gpt3-discord-bot
ai21 bot discord discord-bot gpt3 kirby openai python
Last synced: about 1 month ago
JSON representation
This a very basic discord bot linking to GPT3 (openai and AI21). By defaults it is Kirby, but can be any real or virtual bot (just need more or less training prompt).
- Host: GitHub
- URL: https://github.com/alexistm/gpt3-discord-bot
- Owner: AlexisTM
- Created: 2021-06-22T15:25:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-27T07:52:38.000Z (over 2 years ago)
- Last Synced: 2024-04-14T22:39:52.109Z (8 months ago)
- Topics: ai21, bot, discord, discord-bot, gpt3, kirby, openai, python
- Language: Python
- Homepage:
- Size: 125 KB
- Stars: 35
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
OpenAI Discord bot
==================NOTE: More features are available in the Rust version: https://github.com/AlexisTM/discord-god-rust
This is an OpenAI discord bot replying as Kirby.
Environment keys:
- OPENAI_KEY
- AI21_API_KEY
- DISCORD_BOT_TOKENCome and test on Discord!: https://discord.gg/Y8XPcj2Q
Commands
=============- `Kirby are you there?`: Replies yes if the server runs
- `Kirby enable`: Allow Kirby god to randomly jump into conversations (15% chance of reply)
- `Kirby disable`: Disable the Kirby mode of the channel
- `Kirby god: `: Answers as a Kirby god.
- Remembers the 5 last prompts & answers
- Clean the memory with `Kirby clean`
- `Marv: ` => Answers as a chatbot that reluctantly answers questions. Not maintained ;)Installation
==========```bash
git clone https://github.com/AlexisTM/gpt3-discord-botcd gpt3-discord-bot
python3 -m pip install -r requirements.txt --userexport DISCORD_BOTOKEN="sometoken"
export OPENAI_KEY="someothertoken"
export AI21_API_KEY="yetanothertoken"python3 main.py
```Notes:
- You can directly speak to the bot for a direct chat to Kirby
- The 5 message memory is over the same channel. I will eventually add the user name in the memory for more coherence.
- AI21 is free with enough fun for a day, but is much less smart than OpenAI's version in my biased opinion.![Wow, Kirby is so funny](doc/kirby.png)
Technical help on how to make a Discord bot:
==================Create a bot application: https://discordpy.readthedocs.io/en/stable/discord.html
Configure intents for your bot: https://discordpy.readthedocs.io/en/stable/intents.html
In the oauth section of discord dev portal, make a link to allow your bot to join your server such as:
https://discord.com/api/oauth2/authorize?client_id=APPID&permissions=2215115840&scope=bot
In this case, we only need the bot scope and READ/WRITE messages permissions/