瀏覽代碼

Merge pull request #1577 from xyshell/patch-1

Update chat_gpt_bot.py retry APIConnectionError
master
zhayujie GitHub 11 月之前
父節點
當前提交
b9dfdcef3d
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: 4AEE18F83AFDEB23
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      bot/chatgpt/chat_gpt_bot.py

+ 2
- 1
bot/chatgpt/chat_gpt_bot.py 查看文件

@@ -148,8 +148,9 @@ class ChatGPTBot(Bot, OpenAIImage):
time.sleep(10)
elif isinstance(e, openai.error.APIConnectionError):
logger.warn("[CHATGPT] APIConnectionError: {}".format(e))
need_retry = False
result["content"] = "我连接不到你的网络"
if need_retry:
time.sleep(5)
else:
logger.exception("[CHATGPT] Exception: {}".format(e))
need_retry = False


Loading…
取消
儲存