Compare commits

..

No commits in common. "e02852fb45d85270610f24cab29ad806d4412743" and "863d3e3c8827957bee3bd8cb1977a0870dcb4e80" have entirely different histories.

3 changed files with 0 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 183 KiB

View file

@ -102,10 +102,6 @@ async def on_message(message):
async with message.channel.typing():
reply = get_ai_response(prompt, context=formatted_context)
await message.channel.send(reply)
if prompt:
async with message.channel.typing(): # 👈 Typing indicator!
response = get_ai_response(prompt)
await message.channel.send(response)
await bot.process_commands(message)