From bb9b418fed5b888669257155bcdfe6bf951c14a0 Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Thu, 16 Jun 2022 11:51:24 -0700 Subject: [PATCH] [Dall-E] Provide prompt in result --- dalle/dalle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dalle/dalle.py b/dalle/dalle.py index bb230e3..4069d0c 100644 --- a/dalle/dalle.py +++ b/dalle/dalle.py @@ -32,7 +32,7 @@ class DallE(commands.Cog): if not embed_links: return await ctx.send("I need the `Embed Links` permission here before you can use this command.") - status_msg = await ctx.send("Image generator starting up...") + status_msg = await ctx.send("Image generator starting up, please be patient. This will take a very long time.") images = None attempt = 0 async with ctx.typing(): @@ -62,7 +62,7 @@ class DallE(commands.Cog): for i, image in enumerate(file_images): em = embed.copy() em.set_image(url=f"attachment://{i}.png") - em.set_footer(text="View this output on a desktop client for best results.") + em.set_footer(text=f"Results for: {prompt}\nView this output on a desktop client for best results.") embeds.append(em) form = []