From 893a4e4adb4e086d13e70194cbb14de437853cec Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Tue, 4 Mar 2025 15:49:06 -0800 Subject: [PATCH] remove trigger typing as it breaks in dms --- app/cogs/actual_utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/cogs/actual_utils.py b/app/cogs/actual_utils.py index 3aa20260..37f0f922 100755 --- a/app/cogs/actual_utils.py +++ b/app/cogs/actual_utils.py @@ -342,7 +342,6 @@ class ActualUtils(commands.Cog): async def send_to_llm(self, ctx, question: str): import core_utils - await ctx.channel.trigger_typing() await ctx.defer() await ctx.send_followup(await core_utils.send_to_llm(ctx, question))