Explorar el Código

Merge pull request #1577 from xyshell/patch-1

Update chat_gpt_bot.py retry APIConnectionError
develop
zhayujie GitHub hace 11 meses
padre
commit
b9dfdcef3d
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      bot/chatgpt/chat_gpt_bot.py

+ 2
- 1
bot/chatgpt/chat_gpt_bot.py Ver fichero

@@ -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


Cargando…
Cancelar
Guardar