瀏覽代碼

fix: session exception due to the openai limit #50

master
zhayujie GitHub 1 年之前
父節點
當前提交
d69fd2b982
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 2 行新增1 行删除
  1. +2
    -1
      bot/openai/open_ai_bot.py

+ 2
- 1
bot/openai/open_ai_bot.py 查看文件

@@ -28,7 +28,8 @@ class OpenAIBot(Bot):

reply_content = self.reply_text(new_query, from_user_id)
logger.debug("[OPEN_AI] new_query={}, user={}".format(new_query, from_user_id))
Session.save_session(query, reply_content, from_user_id)
if reply_content and query:
Session.save_session(query, reply_content, from_user_id)
return reply_content

elif context.get('type', None) == 'IMAGE_CREATE':


Loading…
取消
儲存