dify 200字符以上生成图片

This commit is contained in:
liuwei
2025-05-26 14:39:17 +08:00
parent 444ad60625
commit 63e793450c

View File

@@ -152,7 +152,7 @@ class DifyPlugin(MessagePluginInterface):
await bot.send_image_message((roomid if roomid else sender), Path(response))
else:
# 如果是普通文本则在长度大于100字时转为图片发送
if len(response) > 100:
if len(response) > 200:
# 转图片
respath = await convert_md_str_to_image(response, "dify_output.jpg")
await bot.send_image_message((roomid if roomid else sender), Path(respath))
@@ -213,7 +213,7 @@ class DifyPlugin(MessagePluginInterface):
await bot.send_image_message((roomid if roomid else sender), Path(response))
else:
# 如果是普通文本则在长度大于100字时转为图片发送
if len(response) > 100:
if len(response) > 200:
# 转图片
respath = await convert_md_str_to_image(response, "dify_output.jpg")
await bot.send_image_message((roomid if roomid else sender), Path(respath))