From 8be329d8ea473126f9df4bbc4ac370cfd4af592e Mon Sep 17 00:00:00 2001 From: ionburger Date: Sat, 24 Jun 2023 21:16:45 -0600 Subject: [PATCH] yes --- py/cogs/askgpt.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 py/cogs/askgpt.py 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): +