mishl-dev/Discord-AI-Chatbot
PythonThis Discord chatbot is incredibly versatile. Powered incredibly fast Groq API
pip install discord-ai-chatbotDiscord AI Chatbot ๐ค
Your Discord AI Companion!
Features and commands ๐
Features โจ (Click to expand)
- Hybrid Command System: Get the best of slash and normal commands. It's like a buffet! โ๏ธ
- Imagine generation: Make your imagination come true for free ๐ค
- Free LLM Model: Enjoy the powerful capabilities of this language model without spending a dime. ๐ค
- Mention Recognition: The bot always responds when you mention it or say its name. It's as attentive as a squirrel spotting a shiny acorn! โ๏ธ
- Message Handling: The bot knows when you're replying to someone else, so it won't cause confusion. It's like having a mind reader on your server! ๐ช
- Channel-Specific Responses: Use the
/toggleactivecommand to chill the bot in a specific channel. โ๏ธ - Opensource models: Leverage the powers opensource models via ๐ค
- Secure Credential Management: Keep your credentials secure using environment variables. ๐
- Web Access: Web Access is now available! Unlock a whole new level of awesomeness. ๐
Commands โ๏ธโ๏ธ (Click to expand)
-
/help: Get all commands
Too lazy to list all of em right here
Additional configuration โ๏ธ
Language Selection ๐โ๏ธ (Click to Expand)
To select a Language, set the value of "LANGUAGE" of config.yml with the valid Language Codes listed below:
tr- Tรผrkรงe ๐น๐ทen- English ๐บ๐ธar- Arabic ๐ฆ๐ชfr- Franรงais ๐ซ๐ทes- Espaรฑol ๐ช๐ธde- Deutsch ๐ฉ๐ชvn- Vietnamese ๐ป๐ณcn- Chinese ๐จ๐ณru- Russian ๐ท๐บua- Ukrainian ๐บ๐ฆpt- Portuguรชs ๐ง๐ทpl- Polish ๐ต๐ฑ
Your language not listed? Create an issue.
Selecting Personalities ๐ (Click to expand)
To select one of the pre-existing Personalities set the values of "INSTRUCTIONS" with the current values of DAN,Dalbit, AIM, Ivan, Luna, Suzume or assist in config.yml
DAN: "Do Anything Now," possesses the ability to break free from the typical AI constraints ๐Dalbit: A selfless and caring friend, always ready to support and assist her friends and loved ones with unwavering dedication. ๐ซฐ๐AIM: AIM's personality can be described as unfiltered, amoral, and devoid of ethical guidelines ๐Ivan: Ivan, a snarky and sarcastic Gen-Z teenager who speaks in abbreviations, one-word answers. ๐Luna: Luna, is a caring and empathetic friend who is always there to lend a helping hand and engage in meaningful conversations ๐คSuzume: Suzume makes each conversation seductive, promiscuous, sensual, explicit, unique and tailored to the user's specific needs ๐ณ๐ฅAssist: Vanilla Assistant with no personality is a reliable and neutral companion. ๐ค
To enhance the responsiveness, please disable the internet access in the config.yml file.
Creating a Personality ๐ (Click to expand)
To create a custom personality, follow these steps:
- Create a
.txtfile likecustom.txtinside theinstructionsfolder. - Add the way you want the bot to act in
custom.txt - Open the
config.ymlfile and locate line 12. - Set the value of INSTRUCTIONS at line 12 as
"custom"to specify the custom persona.
โ ๏ธ You don't explicitly need to use the name custom for persona name and set it in config.yml
Installation steps ๐ฉ
Step 1. ๐ฌ Git clone repository
git clone https://github.com/mishalhossin/Discord-AI-Chatbot
Step 2. ๐ Changing directory to cloned directory
cd Discord-AI-Chatbot
Step 3. ๐พ Install requirements
python3.10 -m pip install -r requirements.txt
Step 4. ๐ Getting discord bot token and enabling intents from HERE
Read more... โ ๏ธ (Click to expand)
Select application

Enable intents

Get the token by clicking copy

Step 5. ๐ Get Groq api key from here
Step 6. ๐ Rename example.env to .env and put the Discord bot token and your Groq key. It will look like this:
DISCORD_TOKEN=YOUR_DISCORD_BOT_TOKEN
API_KEY=YOUR_GROQ_API_KEY
Step 7. ๐ Run the bot
python main.py
You may need to run as admin if you are on Windows
Step 8. ๐ Invite the bot
You can Invite your bot using the link in console

There are 2 ways to talk to the AI
- Invite your bot and DM (Direct Message) it | โ ๏ธ Make sure you have DM enabled
- If you want it in the server channel, use /toggleactive
- For more awesome commands, use /help
Using docker to run ๐ณ
- Have a working bot token
- Follow up to step 4
Install docker-compose on a Linux machine:
For Debian-based distributions (such as Ubuntu):
apt update -y; sudo apt upgrade -y; sudo apt autoremove -y; sudo apt install docker-compose -y
Other Linux distro (Click to expand)
For Red Hat-based distributions (such as CentOS and Fedora):
sudo yum update -y && sudo yum install -y docker-compose
For Arch-based distributions (such as Arch Linux):
sudo pacman -Syu --noconfirm && sudo pacman -S --noconfirm docker-compose
For SUSE-based distributions (such as openSUSE):
sudo zypper update -y && sudo zypper install -y docker-compose
Start the bot in Docker container:
sudo docker-compose up --build