A multipurpose Discord bot created by Thomas Xin.
Miza's dedicated creator loves to find ways to make Miza bigger and better all the time, with lots of code, optimization and fun to be had! with Features Including: Moderation, Music, Fun, Image Manipulation, and more!
Please support the development of Miza here if you enjoy her services, or would like access to her premium features!
https://ko-fi.com/mizabot
Miza has been free to use for 3 years now since the start of her development, but is quickly becoming more expensive to maintain. Any donations are greatly appreciated, and 100% will go towards supporting Miza's future!
Sections | Explanations |
---|---|
Hosting Miza! | Will talk you through the basics of how to host the code, covering potential error-prone areas! |
AI Features | List of supported AI features, as well as requirements for hosting! |
Folder Structure | Will talk you through where everything within the code files can be found! |
Support! | Links to where you can find Miza and get support! |
Credits | Credits to all contributors! |
This README is currently out-of-date relative to development of this project, and will not be updated until the current intensive phase of maintenance is complete. Please refer to the support Discord server for any required technical support and questions!
If you would like to host a personal copy of Miza for various reasons, the below information may be helpful to be aware of!
- Git
- Python
- Discord Bot Token (Choose your Desired Bot then go to Bot and under Token click Copy)
As of 26 September 2021, Miza now fully works on Windows and Linux. If you're planning to run Miza through a Docker container, there is a working Dockerfile provided that you may use as a template. Note that if you choose to use this, all other installation steps may be skipped, as said Dockerfile includes all necessary installation preparations.
-
Launch Git Bash.
-
Navigate to your desired directory, by typing this command in Git Bash (or Linux terminal):
cd [Desired Directory]
Example: cd C:/Users/Miza/Documents/Projects/
- If on Linux, the following must be installed (use
yum install
on other distributions of Linux as required):
sudo apt install git
sudo apt install python3 python3-pip python3-tk
sudo apt install libgmp-dev libmpfr-dev libmpc-dev
- Clone this Repository, by typing this command:
git clone https://github.com/thomas-xin/Miza.git
-
Run
main.bat
the bot will automatically create anauth.json
file. -
Fill in
auth.json
file (prefix, discord_token, etc) -
Run
main.bat
again. (Miza should now start successfully, and be ready for use. If not read the next section)
- Miza should automatically download and install the required dependencies immediately after running her for the first time, notably the Python modules and FFmpeg. If this fails despite multiple attempts, you may manually invoke the installation using
pip install -r requirements.txt
or any variant that works on your device.
As of 08/12/2021, FFmpeg will be automatically installed after first run, Miza is also going to look through the servers it is in to seek out open candidates for placing some emojis that Miza will also require for certain UI features, so make sure you have a good space set up too. Finally, all API Keys that Miza will require as located in auth.json you will have to obtain yourself.
- The main Discord bot uses around 2GB of CPU RAM, which increases depending on the amount of Discord servers being loaded.
- Most other features utilise minimal amounts of RAM, although subprocesses may temporarily use a few extra GB during heavy loads (such as file conversion)
- VRAM (GPU RAM) requirements vary depending on the ML models invoked. Depending on demand up to 100GB may be utilised at a time.
- For comparison, the official Miza currently runs on 112GB of GDDR6X, 24GB of GDDR6, 64GB of DDR5, and 192GB of NVMe swap.
Miza logs information in up to three places:
log.txt
(which the file gets refreshed upon restart)1- The Console from which Miza is running.2
- Log within Discord itself (which isn't hardcoded, you can enable it as displayed below) 3
[1] Image showing an example of log.txt
file:
[2] Image showing an example of a Console running Miza:
[3] Image showing How to enable log in Discord:
Note: execute the command ~exec -e log
to enable discord logging on Discord. For debugging purposes, this log may include sensitive information being passed through the bot. Please make sure this is not exposed publicly and/or in production.
- Has all your generic license, requirements, etc... (Though requirements is necessary for the install_update functionality which, automatically checks for and installs any missing modules.) But most significantly, the main files responsible for running the bots code. Throughout the code, you will frequently see
from common import *
, which is because common.py contains all the main necessary functions and imports to be used throughout. main.py is the main process, while everything else runs as a subprocess, so if you make any changes to main.py, it'll require a manual restart. Most of the bots optimization and data collection functionality can be found in these files, (such as running the bot of course, starting the heartbeat.tmp and other log related code, caching, assigning variables of the GitHub Directory link, default bot prefix, etc...) As for where things are located... - Unimportant cache data is typically stored in
/cache
. This folder may be deleted in its entirety without problems, although it may cause issues with commands being run in the moment. - Miza has support for offloading AI model data to different folders, or different drives. To do this, manage the
"cache_path"
key inauth.json
. This overrides the location models from Huggingface and co. are downloaded to, and may be useful if you would like to preserve space on the C drive. If not specified, Huggingface will typically default to~/.cache
orC:/Users/{username}/.cache
. - The
saves
folder stores saved data from the database. This folder is important for maintaining state, from custom user profiles to linked hosted files.
- Command categories may be enabled per channel via the
~ec
command, or for the entire bot by removing the.py
files within thecommands
folder. These modules may be hot swapped through the owner-only~reload
and~unload
commands, however please be aware that there may be inconsistencies in behaviour when doing this. Some internal features and databases are also tied to individual commands.
- Misc has all the different files that the bot needs to pull from, such as the avatar (which gets automatically uploaded to the Discord Developers Portal the first time the code is run), the rainbow bar emojis (which get automatically uploaded to a server Miza is in if it cannot find the emojis already), the code necessary for converting org files, computing math equations, finding time zones and etc. You can change the bots avatar and emojis if you want to; but if you want the code to use them the same way, the filename must be kept the same.
With that concludes the basic introduction of hosting Miza. The code is commented and explaining where everything is, so feel free to explore further to see what you can change, and if you have any questions, Thomas Xin is your guy to ask! Please be aware that not every platform and use case is actively supported, and with only one main developer there are no guarantees all requests will be fulfilled.
Read our Wiki! • Join our Discord Support Server! • Check out our Website!
The domain redirects to a webserver which includes: a command tester within the comforts of your browser, a free file host, and more!
- The website was mostly designed by Hucario, who has also been a large help in making this project possible!
Miza has a public API that has now been moved to RapidAPI. Currently not all endpoints and possible features in the API are accessible from there, but it will be updated over time.
Thanks to all the contributers, for helping Miza grow!
Helping with this README is Illouminant, Miza's secondary bot owner!
Please support the development of Miza here if you enjoy her services, or would like access to her premium features!
https://ko-fi.com/mizabot
Miza has been free to use for 3 years now since the start of her development, but is quickly becoming more expensive to sustain. Any donations are greatly appreciated, and 100% will go towards supporting Miza's future!