This commit is contained in:
fluzzi 2023-05-24 18:14:01 -03:00
parent bcbbd4765d
commit 06501eccc9
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
__version__ = "3.2.7"
__version__ = "3.2.8"

View File

@ -723,7 +723,7 @@ Users will typically use words like verify, check, make sure, or similar to refe
try:
myfunction = function(*args)
break
except (openai.error.APIConnectionError, openai.error.RateLimitError):
except:
wait_time = backoff_num * (2 ** retries)
time.sleep(wait_time)
retries += 1