gpt4 book ai didi

python - 如何与discord.py中的附加图像进行交互

转载 作者:行者123 更新时间:2023-12-04 10:50:47 28 4
gpt4 key购买 nike

我希望我的机器人与附加到它的消息的图像进行交互。它将获取图像并将其存储到自身中。这样的代码怎么写?

这里是当前代码的一部分:

@bot.command()
async def hello(ctx):
await ctx.send(embeds)

就是这样,我希望你能帮助我

最佳答案

您可以像这样重新发送图像:

@bot.command()
async def hello(ctx):
files = []
for file in ctx.message.attachments:
fp = BytesIO()
await file.save(fp)
files.append(discord.File(fp, filename=file.filename, spoiler=file.is_spoiler()))
await ctx.send(files=files)

关于python - 如何与discord.py中的附加图像进行交互,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59480451/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com