This repository contains the code for Stampy The Safety Bot (@Stampy). Stampy’s primary purpose is to share questions from Rob Miles YouTube comments section and responses from Rob Miles AI Discord. Questions from YouTube that are interesting spark conversations on discord. Responses to the YouTube question on Discord can then be posted by Stampy as a reply to the YouTube comment.
You can also directly interact with Stampy on Discord (see invite link below). Ask it a question by messaging Stampy <YOUR QUESTION>
on any channel.
Discussion and planning is primarily done on Discord. You are welcome to join via this invite.
- Install Requirements:
- Fork and then clone the repo
- To fork, click the fork button on top of this page and accept default settings.
- To clone run
git clone https://github.com/<USERNAME>/stampy.git
- Create stampy python conda environment
- Change directory to where you downloaded the stampy github
repository:
cd stampy
- Run
conda env create -f environment.yml
This will create an anaconda python kernel with all the dependencies required to run the current version of stampy.
- Change directory to where you downloaded the stampy github
repository:
- Get access to appropriate channels in Discord. In the
#stampy-dev
channel, ask to be given access to:#stampy-dev-priv
channel to access the.env
information- Stampy's Test Server
- Set Environment Variables
- In the
#stampy-dev-priv
channel, go to pinned messages, and copy the message that starts withDISCORD_TOKEN
- Create
.env
in the root of the stampy repository (so dotenv can find it) - Paste the message into
.env
- Add coda api token to
.env
: first create a coda account, then create a token in account settings, then addCODA_API_TOKEN="your-token-here"
to.env
- In the
- Verify that your setup is working
- Run
conda activate stampy
- Then run
python3 stam.py
orpython stam.py
from the base directory of the repository.- Alternatively, if you prefer to restart stampy on any file save (and if you have NodeJS installed), you can run
npx nodemon stamp.py
.
- Alternatively, if you prefer to restart stampy on any file save (and if you have NodeJS installed), you can run
- Go to Stampy's Test Server, then
#stampy-dev-priv
channel. - You should see a message from Stampy saying
I just (re)started from git branch master by <your name>!
- If you ask Stampy a question (e.g.
Stampy, what is AI
), you should see messages in your terminal processing this question.
- Run
Check out the currently open github issues and pull requests, if you see something open you can help out with add a comment. Most coordinations is done through live voice calls in the discord.
If you make a change to source code, please create a new branch first, then commit your changes there. Open a pull request on github and ask for other developers to review your code before merging.
See TUTORIAL.md for a step-by-step tutorial detailing how to add features.