mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-12 23:54:59 +00:00
refactor: split error and retry messages in simple_send_with_retries
This commit is contained in:
parent
3baad86afd
commit
907c1dbe2b
2 changed files with 2 additions and 4 deletions
|
@ -118,10 +118,11 @@ def simple_send_with_retries(model_name, messages, extra_params=None):
|
|||
_hash, response = send_completion(**kwargs)
|
||||
return response.choices[0].message.content
|
||||
except retry_exceptions() as err:
|
||||
print(str(err))
|
||||
retry_delay *= 2
|
||||
if retry_delay > RETRY_TIMEOUT:
|
||||
break
|
||||
print(f"{str(err)}\nRetrying in {retry_delay:.1f} seconds...")
|
||||
print(f"Retrying in {retry_delay:.1f} seconds...")
|
||||
time.sleep(retry_delay)
|
||||
continue
|
||||
except AttributeError:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue