mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-18 14:34:23 +01:00
in debug mode add a log about rate limit error
This commit is contained in:
@@ -95,6 +95,11 @@ def create_chat_completion(
|
||||
)
|
||||
break
|
||||
except RateLimitError:
|
||||
if CFG.debug_mode:
|
||||
print(
|
||||
Fore.RED + "Error: ",
|
||||
f"Reached rate limit. Waiting {backoff} seconds..." + Fore.RESET,
|
||||
)
|
||||
pass
|
||||
except APIError as e:
|
||||
if e.http_status == 502:
|
||||
|
||||
Reference in New Issue
Block a user