Include thread ID/context in footer
All checks were successful
Build and Publish Jimmy.2 / build_and_publish (push) Successful in 6s

This commit is contained in:
Nexus 2024-06-03 00:28:03 +01:00
parent 6225170c00
commit a9f6911efa
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -1059,9 +1059,10 @@ class Ollama(commands.Cog):
await msg.edit(embed=embed) await msg.edit(embed=embed)
last_edit = time.time() last_edit = time.time()
embed.set_footer( embed.set_footer(
text="Finished generating truth based off of {:,} messages, using server {!r}.".format( text="Finished generating truth based off of {:,} messages, using server {!r} | {!s}".format(
len(messages), len(messages),
server, server,
thread_id
) )
) )
await msg.edit(embed=embed) await msg.edit(embed=embed)