I'm trying to make a command that sends an image of a person that doesn't exist. The thing is it keeps sending the same image over and over again. I need it to send a different image, and for that to be sent the website needs to be reloaded.
This is my code so far.
@client.command()
async def tpdne(ctx):
embed=discord.Embed(colour = discord.Colour.orange(), timestamp=ctx.message.created_at)
embed.set_image(url=("https://thispersondoesnotexist.com/image"))
await ctx.send(embed=embed)