Kaynağa Gözat

fix: variable name compatibility modification

master
zhayujie GitHub 1 yıl önce
ebeveyn
işleme
8107165792
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 4AEE18F83AFDEB23
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. +2
    -2
      bot/openai/open_ai_bot.py

+ 2
- 2
bot/openai/open_ai_bot.py Dosyayı Görüntüle

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

@staticmethod
def clear_all_session():
user_session.clear()
user_session.clear()

Yükleniyor…
İptal
Kaydet