浏览代码

Bad Gateway exception retry

master
lichengzhe 1年前
父节点
当前提交
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:


正在加载...
取消
保存