mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-07-20 13:47:15 +08:00
fix: variable name compatibility modification #415
This commit is contained in:
@@ -24,7 +24,7 @@ class ChatGPTBot(Bot):
|
|||||||
# acquire reply content
|
# acquire reply content
|
||||||
if not context or not context.get('type') or context.get('type') == 'TEXT':
|
if not context or not context.get('type') or context.get('type') == 'TEXT':
|
||||||
logger.info("[OPEN_AI] query={}".format(query))
|
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 == '#清除记忆':
|
if query == '#清除记忆':
|
||||||
Session.clear_session(session_id)
|
Session.clear_session(session_id)
|
||||||
return '记忆已清除'
|
return '记忆已清除'
|
||||||
|
|||||||
Reference in New Issue
Block a user