#ctx.typing()
1 messages · Page 1 of 1 (latest)
How do you use it?
async with ctx.typing():
response = await completer.ChatCompletion.acreate(
model=model,
messages=list(chats[user_id])
)
...
await msg.edit(...)
What?