Readme and remove API keys

This commit is contained in:
phlux 2025-05-06 17:00:42 +00:00
parent 6b8f4674c3
commit db82e39b8d
2 changed files with 9 additions and 2 deletions

7
README.md Normal file
View File

@ -0,0 +1,7 @@
#Discord GPT Bot
This bot simply takes inputs when called via @<username>, forwards them to ChatGPT, and sends back the results.
The only config options are BotToken and OpenAIToken, both found in config/config.go
Update accordingly and run.

View File

@ -2,6 +2,6 @@
package config
var (
BotToken = "REMOVED"
OpenAIKey = "REMOVED"
BotToken = ""
OpenAIKey = ""
)