Merge pull request #1683 from Hyaxia/feature/rate-limit-log

in debug mode add a log about rate limit error
This commit is contained in:
BillSchumacher
2023-04-15 15:18:28 -05:00
committed by GitHub

View File

@@ -95,7 +95,11 @@ def create_chat_completion(
)
break
except RateLimitError:
pass
if CFG.debug_mode:
print(
Fore.RED + "Error: ",
f"Reached rate limit, passing..." + Fore.RESET,
)
except APIError as e:
if e.http_status == 502:
pass