Anivo brings the power of AI to your Discord server. Chat naturally, generate stunning images, play games, and manage your community with intelligent automation.
Anivo combines powerful AI capabilities with fun community features to create the ultimate Discord experience.
Natural conversations powered by Mistral AI. Ask questions, get help with coding, or just chat.
Create stunning AI-generated images with simple text prompts. Powered by Stable Diffusion.
Play number guessing, dice, coin flip, Russian roulette, and magic 8-ball with your friends.
Earn coins through games, daily rewards, and activities. Compete on the global leaderboard.
Automated verification system, role management, and channel setup with one command.
Modern Discord interface with intuitive slash commands. No need to remember prefixes.
Anivo offers over 30 commands across multiple categories. Here's a selection of what you can do.
/chat
Start a conversation with the AI
/imagine
Generate an AI image from text
/reset
Clear your chat history
/roast
Get a funny AI-generated roast
/guess
Play number guessing game (1-100)
/dice
Roll a dice and win coins
/flip
Flip a coin (Heads or Tails)
/roulette
Play Russian Roulette
/8ball
Ask the magic 8-ball
/joke
Get a random joke
/balance
Check your coin balance
/daily
Claim your daily reward
/pay
Send coins to other users
/leaderboard
View top users by coins
/profile
View your profile stats
/setup
Auto-setup server with channels
/channel
Set AI chat channel
/announce
Send server announcement
/serverinfo
View server statistics
Experience Anivo's AI capabilities with this interactive demo.
# Ask Anivo to help with code!
# Example: "Create a Python function to sort a list"
def quicksort(arr):
if len(arr) <= 1:
return arr
pivot = arr[len(arr) // 2]
left = [x for x in arr if x < pivot]
middle = [x for x in arr if x == pivot]
right = [x for x in arr if x > pivot]
return quicksort(left) + middle + quicksort(right)
# Anivo can explain, debug, and improve your code!
Anivo is designed to run anywhere. Deploy to Railway, Heroku, or self-host with ease.
The easiest way to deploy. Auto-deploy from GitLab with environment variables.
Classic platform-as-a-service option with Procfile support included.
Run on your own VPS or dedicated server for full control and customization.
Add Anivo to your Discord server today and experience the power of AI in your community.
git clone https://gitlab.com/Vyapari-Dev/anivo.git
Set up environment variables in .env file
Deploy to Railway or run locally
Yes! Anivo is completely free and open source. You can self-host it or use the hosted version without any cost.
Anivo uses Mistral AI for chat capabilities and Hugging Face (Stable Diffusion) for image generation. You'll need API keys for both to use these features.
Absolutely! Anivo is open source (MIT License). You can fork the repository, modify the code, and deploy your own version with custom features.
We recommend Railway for easy deployment. Check our detailed Hosting Guide for step-by-step instructions for Railway, Heroku, and self-hosting options.
Yes! When you self-host Anivo, all data stays on your server. We don't collect or store any user information. Chat history is temporary and resets on restart by default.
Yes! We welcome contributions. Fork the repository on GitLab, make your changes, and submit a merge request. Check the README for contribution guidelines.