dify 1500字判断

This commit is contained in:
liuwei
2025-06-10 09:12:02 +08:00
parent 2e4cd203c7
commit ea5244287e

View File

@@ -215,7 +215,7 @@ class DifyPlugin(MessagePluginInterface):
return False, "获取媒资失败"
else:
# 如果是普通文本则在长度大于800字时转为图片发送
if len(response) > 800:
if len(response) > 1500:
# 转图片
output_image = f"dify_output_{int(time.time())}.png"
respath = await convert_md_str_to_image(response, output_image)