Переглянути джерело

fix: session exception due to the openai limit #50

master
zhayujie GitHub 1 рік тому
джерело
коміт
d69fd2b982
Не вдалося знайти GPG ключ що відповідає даному підпису Ідентифікатор GPG ключа: 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':


Завантаження…
Відмінити
Зберегти