From db82e39b8d57e6d382b060d6f46b5ea22113a7f7 Mon Sep 17 00:00:00 2001 From: phlux Date: Tue, 6 May 2025 17:00:42 +0000 Subject: [PATCH] Readme and remove API keys --- README.md | 7 +++++++ config/config.go | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 README.md 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 = "" )