Browse Source

fix(chat_gpt_bot.py, open_ai_bot.py): increase retry time to 20 seconds when encountering RateLimitError

master
lanvent 1 year ago
parent
commit
abcbb34b1c
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      bot/chatgpt/chat_gpt_bot.py
  2. +1
    -1
      bot/openai/open_ai_bot.py

+ 1
- 1
bot/chatgpt/chat_gpt_bot.py View File

@@ -142,7 +142,7 @@ class ChatGPTBot(Bot, OpenAIImage):
logger.warn("[CHATGPT] RateLimitError: {}".format(e))
result["content"] = "提问太快啦,请休息一下再问我吧"
if need_retry:
time.sleep(5)
time.sleep(20)
elif isinstance(e, openai.error.Timeout):
logger.warn("[CHATGPT] Timeout: {}".format(e))
result["content"] = "我没有收到你的消息"


+ 1
- 1
bot/openai/open_ai_bot.py View File

@@ -114,7 +114,7 @@ class OpenAIBot(Bot, OpenAIImage):
logger.warn("[OPEN_AI] RateLimitError: {}".format(e))
result["content"] = "提问太快啦,请休息一下再问我吧"
if need_retry:
time.sleep(5)
time.sleep(20)
elif isinstance(e, openai.error.Timeout):
logger.warn("[OPEN_AI] Timeout: {}".format(e))
result["content"] = "我没有收到你的消息"


Loading…
Cancel
Save