This repository contains code for creating chatbots/utility bots for Mars College, or otherwise.
There are several useful utilities for chat programs, including support for numerous language model API providers, as well as methods for completing text, searching topics, and getting message similarity.
python -m virtualenv venv
pip install flit
flit install --deps=all --pth-file
All bots must be placed in a directory equal to or higher in the file system than the run script (bot.py
). It is recommended that you create a folder called bots
in the marsbots-core
directory, then create additional folders and files in there as needed.
All bots expect three things:
- A JSON settings file
- A Python script containing the bot's code as a Discord.py Cog class
- A .env file to load API keys/settings from
The bot's JSON settings file should contain the following:
"name"
: The name of the bot
"token_env"
: The name of the environment variable which contains the discord bot token used to run the bot
(Optional) "command_prefix"
: This will be the prefix used for the bot to respond to commands.
(Optional) "intents"
: A list of special intents needed. Takes a list, with accepted values "presence" and "members"
The bot's main logic should be created as a Discord.py Cog class, and should have a setup function which adds the Cog to the bot.
This should contain any API keys or sensitive variables you need to use to run the bot. Expected default names for environment variables can be found in the config.py
file of Marsbots core.
Bots can be run locally using a command such as the following:
python bot.py ./examples/examplebot/examplebot.json --cog-path=examples.examplebot.examplebot --dotenv-path=.env
Note that the --cog-path
flag should be provided using python module syntax, using dots.
Several bots can be managed at once using PM2 and a PM2 config file. An example config file is provided in the examples
folder for running the example bot using PM2.