Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zeldafan0225/ai_horde_discord
A discord bot to interact with https://aihorde.net
https://github.com/zeldafan0225/ai_horde_discord
bot discord discord-bot discord-js nodejs
Last synced: 6 days ago
JSON representation
A discord bot to interact with https://aihorde.net
- Host: GitHub
- URL: https://github.com/zeldafan0225/ai_horde_discord
- Owner: ZeldaFan0225
- License: agpl-3.0
- Created: 2022-10-17T11:32:39.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-30T19:21:56.000Z (7 months ago)
- Last Synced: 2024-05-30T22:19:43.835Z (7 months ago)
- Topics: bot, discord, discord-bot, discord-js, nodejs
- Language: TypeScript
- Homepage:
- Size: 397 KB
- Stars: 49
- Watchers: 3
- Forks: 13
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- License: LICENSE
Awesome Lists containing this project
README
# AI_Horde_Discord
A basic Discord bot to generate images using the AI Horde API.
**DISCLAIMER:** THIS REPOSITORY IS IN NO WAY ASSOCIATED TO THE CREATORS OF AI HORDE
OFFERING THIS CODE IN FORM OF A PUBLIC DISCORD BOT WHICH CAN BE INVITED BY EVERYBODY IS NOT SUPPORTED.
THE SCALE OF A BOT USING THIS CODE IS 1 SERVER, EVERYTHING ABOVE IS NOT SUPPORTED.## Features
View [the changelog](https://github.com/ZeldaFan0225/AI_Horde_Discord/blob/main/changelog.md) to see what has been added
This package includes the code for a discord bot which interacts with the ai horde api.
The bot has the following features:- /generate command with all options the api supports at the time of creating this file
- /login, /logout and /updatetoken for users to add and manage their account which they can create at https://aihorde.net/register
- /userinfo (Userinfo context command) which shows your ai horde user information and the user information of anybody else who is logged in
- /terms which shows how the bot currently handles the api token and further information
- /models which shows all currently available models
- /worker which lets you see information on an active worker
- /team which lets you see information on a team
- /news which shows latest news about the horde
- /transferkudos (Transfer Kudos context command) to send somebody kudos
- /interrogate to interrogate any image
- /party to start a generation party with a given style
- "Remix" to edit another discord users avatar
- "Caption" to caption anozher discord users avatar
- advanced configuration file which lets you change how the bot behaves and what actions the user can use (for limits refer to https://aihorde.net/api)
- logging prompts, user id and generation id to track generation of malicious, nsfw or illegal content
- and even more...## Version Requirements
- NodeJS >= 18.0.0
Optional:
- PostgreSQL >= 14.6## How to set up
### A detailed Linux setup can be found [here](https://github.com/ZeldaFan0225/AI_Horde_Discord/blob/main/DB_SETUP.md)
1) download the code from this repository
2) get the token of your discord bot (https://discord.com/developers/docs/reference#authentication)
3) Install the node modules using `npm i` (make sure the dev dependencies are also installed for typescript to work)
4) remove the `template.` from the `template.config.json` file
If you want to have extra functionality do the following steps:5) set up a postgres database
6) fill out the `template.env` and rename it to `.env`
If you just want to generate images with no token or the default token in the config.json file do the following steps:5) modify the config file and set `use_database` to false
6) fill out the `template.env` and rename it to `.env` (you can leave the keys prefixed with `DB_` empty)
7) Run `npm run generate-key` and copy the generated encryption key in your `.env` (If you disabled token encryption you can leave it blank)
8) modify the [config.json](https://github.com/ZeldaFan0225/AI_Horde_Discord/blob/main/template.config.json) file (from step 4) to fit your needs (you can read about what which property does in [config.md](https://github.com/ZeldaFan0225/AI_Horde_Discord/blob/main/config.md))
9) compile the code and start the process (this can be done by using `npm run deploy`)
Now if everything is set up it should start and give an output in the console.## Encryption Key
When changing your encryption key after deployment the tokens won't be decrypted properly.
Avoid changing the encryption key after initial setup.
Disabling encryption at any point will make commands for users who saved their tokens in an encrypted form not work any more.## How to update
1) Pull the code from this repository
2) Update your config. Reading through the [changelog](https://github.com/ZeldaFan0225/AI_Horde_Discord/blob/main/changelog.md) might help.