浏览代码

fix: variable name compatibility modification #415

master
zhayujie GitHub 1年前
父节点
当前提交
8fa4041fc2
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      bot/chatgpt/chat_gpt_bot.py

+ 1
- 1
bot/chatgpt/chat_gpt_bot.py 查看文件

@@ -24,7 +24,7 @@ class ChatGPTBot(Bot):
# acquire reply content
if not context or not context.get('type') or context.get('type') == 'TEXT':
logger.info("[OPEN_AI] query={}".format(query))
session_id = context['session_id']
session_id = context.get('session_id') or context.get('from_user_id')
if query == '#清除记忆':
Session.clear_session(session_id)
return '记忆已清除'


正在加载...
取消
保存