changed name to chatgpt to better explain what the plugin is

This commit is contained in:
phixxy 2024-01-24 15:44:55 -08:00
parent 510eeb4812
commit 6d50ca0aef

View file

@ -4,7 +4,7 @@ import time
import json import json
from discord.ext import commands, tasks from discord.ext import commands, tasks
class AsyncOpenAI(commands.Cog): class ChatGPT(commands.Cog):
def __init__(self, bot): def __init__(self, bot):
self.bot = bot self.bot = bot
@ -202,5 +202,6 @@ class AsyncOpenAI(commands.Cog):
self.save_to_db(reminders_path,data) self.save_to_db(reminders_path,data)
async def setup(bot): async def setup(bot):
await bot.add_cog(AsyncOpenAI(bot)) await bot.add_cog(ChatGPT(bot))