您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

54 行
1.9KB

  1. import time
  2. from bot.bot import Bot
  3. from revChatGPT.revChatGPT import Chatbot
  4. from common.log import logger
  5. from config import conf
  6. user_session = dict()
  7. last_session_refresh = time.time()
  8. class ChatGPTBot(Bot):
  9. def __init__(self):
  10. config = {
  11. "Authorization": "<Your Bearer Token Here>", # This is optional
  12. "session_token": conf().get("session_token")
  13. }
  14. self.chatbot = Chatbot(config)
  15. def reply(self, query, context=None):
  16. from_user_id = context['from_user_id']
  17. logger.info("[GPT]query={}, user_id={}, session={}".format(query, from_user_id, user_session))
  18. now = time.time()
  19. global last_session_refresh
  20. if now - last_session_refresh > 60 * 8:
  21. logger.info('[GPT]session refresh, now={}, last={}'.format(now, last_session_refresh))
  22. self.chatbot.refresh_session()
  23. last_session_refresh = now
  24. if from_user_id in user_session:
  25. if time.time() - user_session[from_user_id]['last_reply_time'] < 60 * 5:
  26. self.chatbot.conversation_id = user_session[from_user_id]['conversation_id']
  27. self.chatbot.parent_id = user_session[from_user_id]['parent_id']
  28. else:
  29. self.chatbot.reset_chat()
  30. else:
  31. self.chatbot.reset_chat()
  32. logger.info("[GPT]convId={}, parentId={}".format(self.chatbot.conversation_id, self.chatbot.parent_id))
  33. try:
  34. res = self.chatbot.get_chat_response(query, output="text")
  35. logger.info("[GPT]userId={}, res={}".format(from_user_id, res))
  36. user_cache = dict()
  37. user_cache['last_reply_time'] = time.time()
  38. user_cache['conversation_id'] = res['conversation_id']
  39. user_cache['parent_id'] = res['parent_id']
  40. user_session[from_user_id] = user_cache
  41. return res['message']
  42. except Exception as e:
  43. logger.error(e)
  44. return None