Browse Source

fix: plugin tool: add reply to session

master
goldfishh 1 year ago
parent
commit
461777cad3
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      plugins/tool/tool.py

+ 2
- 1
plugins/tool/tool.py View File

@@ -83,6 +83,7 @@ class Tool(Plugin):
try:
_reply = self.app.ask(query, user_session)
e_context.action = EventAction.BREAK_PASS
all_sessions.session_reply(_reply, e_context['context']['session_id'])
except ValueError as e:
logger.exception(e)
logger.error(str(e))
@@ -90,8 +91,8 @@ class Tool(Plugin):
_reply = "请你随机用一种聊天风格,提醒用户:这个问题你无法处理"
reply.type = ReplyType.ERROR
e_context.action = EventAction.BREAK
reply.content = _reply

reply.content = _reply
e_context['reply'] = reply
return



Loading…
Cancel
Save