From 9df15b3b5cfc768b977757244c4f8c986bbb4eca Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Sat, 24 Sep 2022 15:26:28 -0700 Subject: [PATCH] fix inputs to wolfram and openai to be more discordy --- app/cogs/actual_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/cogs/actual_utils.py b/app/cogs/actual_utils.py index 5f3c0c1a..9dbe599f 100644 --- a/app/cogs/actual_utils.py +++ b/app/cogs/actual_utils.py @@ -56,11 +56,11 @@ class ActualUtils(commands.Cog): ) @commands.command(name="openai") - async def openai(self, ctx: commands.Context): + async def openai(self, ctx: commands.Context, *, query): import questions await ctx.reply( - questions.open_ai(ctx.message.content), + questions.open_ai(query), ) @commands.command(name="trackdays")