diff --git a/py/cogs/askgpt.py b/py/cogs/askgpt.py new file mode 100644 index 0000000..57e658b --- /dev/null +++ b/py/cogs/askgpt.py @@ -0,0 +1,11 @@ +import discord +from discord.ext import bridge, commands +import openai + +class Askgpt(commands.Cog): + def __init__(self, bot): + self.bot = bot + + @bridge.bridge_command() + async def askgpt(self, ctx, *, message): +