To get started:
- Clone this repository
- Fill .env with your values
- Build (
go build
) the app and start it (./dgo-ai
)
docker run -d \
-e TOKEN=your-token-change-this \
-e PRESENCE=DM or mention for AI response \
-e INJECT_USER_PROMPT=... \
-e INJECT_SYSTEM_PROMPT=... \
ghcr.io/neu-ma-tic/discord-ai:master
# assuming unix-like host
go build
# builds as `dgo-ai` by default
./dgo-ai
TOKEN
: The bot's tokenPRESENCE_TEXT
: The bot's rpc textINJECT_USER_PROMPT
: Text to inject as user role as chat contextINJECT_SYSTEM_PROMPT
: Text to inject as system role as chat context