From bccfc2c83ab7e9f1c456558309185bd66d9d0466 Mon Sep 17 00:00:00 2001 From: Juni Date: Mon, 5 Dec 2022 14:39:47 -0500 Subject: [PATCH] fix config --- chatGpt/chatgpt.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chatGpt/chatgpt.py b/chatGpt/chatgpt.py index 7bfa8c7..bdf84b8 100644 --- a/chatGpt/chatgpt.py +++ b/chatGpt/chatgpt.py @@ -29,7 +29,8 @@ class ChatGpt(commands.Cog): return await ctx.send("The openai email and password keys have not been set.") config = { "email": openAiKeys.get("email"), - "password": openAiKeys.get("password"), + "password": openAiKeys.get("password"), + "Authorization": None, } return config