Browse Source

fix: summary failed tips

develop
zhayujie 1 year ago
parent
commit
16d7836369
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      plugins/linkai/linkai.py

+ 2
- 2
plugins/linkai/linkai.py View File

@@ -56,7 +56,7 @@ class LinkAI(Plugin):
_send_info(e_context, "正在为你加速生成摘要,请稍后") _send_info(e_context, "正在为你加速生成摘要,请稍后")
res = LinkSummary().summary_file(file_path) res = LinkSummary().summary_file(file_path)
if not res: if not res:
_set_reply_text("总结出现异常,请稍后再试吧", e_context)
_set_reply_text("因为神秘力量无法获取文章内容,请稍后再试吧", e_context, level=ReplyType.TEXT)
return return
USER_FILE_MAP[_find_user_id(context) + "-sum_id"] = res.get("summary_id") USER_FILE_MAP[_find_user_id(context) + "-sum_id"] = res.get("summary_id")
_set_reply_text(res.get("summary") + "\n\n💬 发送 \"开启对话\" 可以开启与文件内容的对话", e_context, level=ReplyType.TEXT) _set_reply_text(res.get("summary") + "\n\n💬 发送 \"开启对话\" 可以开启与文件内容的对话", e_context, level=ReplyType.TEXT)
@@ -70,7 +70,7 @@ class LinkAI(Plugin):
_send_info(e_context, "正在为你加速生成摘要,请稍后") _send_info(e_context, "正在为你加速生成摘要,请稍后")
res = LinkSummary().summary_url(context.content) res = LinkSummary().summary_url(context.content)
if not res: if not res:
_set_reply_text("总结出现异常,请稍后再试吧", e_context)
_set_reply_text("因为神秘力量无法获取文章内容,请稍后再试吧~", e_context, level=ReplyType.TEXT)
return return
_set_reply_text(res.get("summary") + "\n\n💬 发送 \"开启对话\" 可以开启与文章内容的对话", e_context, level=ReplyType.TEXT) _set_reply_text(res.get("summary") + "\n\n💬 发送 \"开启对话\" 可以开启与文章内容的对话", e_context, level=ReplyType.TEXT)
USER_FILE_MAP[_find_user_id(context) + "-sum_id"] = res.get("summary_id") USER_FILE_MAP[_find_user_id(context) + "-sum_id"] = res.get("summary_id")


Loading…
Cancel
Save