vibrantrida / AI-Discord-Mod

An AI-Powered Discord Server Moderator capable of moderating text and images.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ€– AI-Discord-Mod: Sven πŸ€–

Sven is a Discord bot that utilizes OpenAI's Moderation API for text moderation and HuggingFaces' transformer model for image moderation. This bot helps maintain a safe and respectful environment in your Discord server. This bot is COMPLETELY FREE to use as OpenAI's Moderation API is free, and so is HuggingFace! Your OpenAI API key is only needed to prove to OpenAI that you are an API user. Rest assured however, you will not be charged!

Screenshot 2023-05-15 at 9 14 12 PM

πŸš€ Add an Invite-Ready, Hosted Sven Here: Invite Sven

🌟 Features

  • Text moderation using OpenAI's Moderation API
  • Image moderation using HuggingFaces' transformer model
  • Warns and mutes users for inappropriate messages
  • Configurable warning limit and mute duration

πŸš€ Getting Started

Follow these steps to set up your own instance of AI-Discord-Mod:

πŸ“‹ Prerequisites

Ensure you have the following installed:

  • Python 3.6 or later
  • pip (Python package installer)

Install the necessary Python packages with the following commands:

pip install -r requirements.txt
pip install transformers datasets
pip install torch # or pip install tensorflow depending on your preference

πŸ€– Setting up a Discord Bot

  1. Go to the Discord Developer Portal.
  2. Click on "New Application". Give it a name and click on "Create".
  3. Go to the "Bot" tab and click on "Add Bot". You will see a message saying "A wild bot has appeared!", click "Yes, do it!".
  4. Under the "Token" section, click on "Copy". This will be your DISCORD_BOT_TOKEN. Remember to keep this secret!
  5. Go to the "OAuth2" tab, under "Scopes" tick "bot", then under "Bot Permissions" tick "Administrator".
  6. You will see a generated URL, use this URL to invite your bot to your Discord server.

πŸ›  Setting up the AI-Discord-Mod Project

  1. Clone this repository to your local machine: git clone https://github.com/gravelBridge/AI-Discord-Mod.git
  2. Navigate to the project directory: cd AI-Discord-Mod
  3. Copy the .env.template file and rename it to .env: cp .env.template .env
  4. Open the .env file in a text editor and replace the placeholders with your OPENAI_API_KEY and DISCORD_BOT_TOKEN. Set the USE_TRIGGERING_WORDS and TRIGGERING_WORDS values as per your preference.
  5. Your .env file should look like this:
    # OPENAI_API_KEY: Your OpenAI API Key, must be connected to an account with a payment method.
    OPENAI_API_KEY=your_openai_api_key
    #DISCORD_BOT_TOKEN: Your Discord Bot Token that's in your Discord Server.
    DISCORD_BOT_TOKEN=your_discord_bot_token
    
    # USE_TRIGGERING_WORDS: If the bot should only send requests for moderation if the message contains a triggering word that is defined below.
    USE_TRIGGERING_WORDS=True
    # TRIGGERING_WORDS: A txt file directory to a list of triggering words, comma separated, that have to sent in order for message to be checked via AI. 
    TRIGGERING_WORDS=The text file directory
    
  6. Save and close the .env file.

πŸƒ Running the Bot

To run the bot, navigate to the project directory and run: python ai-discord-moderator/discord_bot.py For help, run the /help command in your discord server!

The bot should now be active in your Discord server and automatically moderate text and images based on the rules defined in the ai_discord_functions.py and discord_bot.py scripts.

⚠️ Note

This bot uses AI models which, while powerful, might not always make perfect decisions. It is recommended to have human moderators oversee the bot's actions for best results.

πŸ“ License

This project is licensed under the GPL-3.0 License. See the LICENSE file for details.

⭐ Remember to leave a star! It gives me motivation to keep working on awesome projects like this. ❀️

About

An AI-Powered Discord Server Moderator capable of moderating text and images.

License:GNU General Public License v3.0


Languages

Language:Python 84.5%Language:HTML 15.5%