diff --git a/README.md b/README.md new file mode 100644 index 0000000..b120b27 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +#Discord GPT Bot + +This bot simply takes inputs when called via @, 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. diff --git a/config/config.go b/config/config.go index 92cee4d..9881598 100644 --- a/config/config.go +++ b/config/config.go @@ -2,6 +2,6 @@ package config var ( - BotToken = "REMOVED" - OpenAIKey = "REMOVED" + BotToken = "" + OpenAIKey = "" )