소스 검색

Bad Gateway exception retry

lichengzhe 2 년 전
부모
커밋
2d7dd71a3d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      bot/chatgpt/chat_gpt_bot.py

+ 1 - 1
bot/chatgpt/chat_gpt_bot.py

@@ -134,7 +134,7 @@ class ChatGPTBot(Bot, OpenAIImage):
                 result["content"] = "我没有收到你的消息"
                 if need_retry:
                     time.sleep(5)
-            elif isinstance(e, openai.error.APIError:):
+            elif isinstance(e, openai.error.APIError):
                 logger.warn("[CHATGPT] Bad Gateway: {}".format(e))
                 result["content"] = "请再问我一次"
                 if need_retry: