set typing

pull/3/head
Michael Yang 2023-08-04 00:42:08 -07:00
parent 2a39686d43
commit 715e866430
1 changed files with 18 additions and 18 deletions

View File

@ -76,12 +76,12 @@ async def on_message(message):
await message.channel.send('What can I do for you?', reference=message)
return
await message.add_reaction('🤔')
response = None
# TODO: discord has a 2000 character limit, so we need to split the response
response = None
buffer = ''
response_content = ''
async with message.channel.typing():
await message.add_reaction('🤔')
async for chunk in generate_response(raw_content, **load_session(message.reference)):
if chunk['done']:
response_content += buffer