Revert "rename simple_send_with_retries -> send_with_retries"

This reverts commit d619edf6e9.
This commit is contained in:
Paul Gauthier 2024-08-02 10:49:44 -03:00
parent d619edf6e9
commit da3e507ec4
5 changed files with 26 additions and 19 deletions

View file

@ -6,7 +6,7 @@ import git
import pathspec
from aider import prompts, utils
from aider.sendchat import send_with_retries
from aider.sendchat import simple_send_with_retries
from .dump import dump # noqa: F401
@ -170,7 +170,7 @@ class GitRepo:
]
for model in self.models:
commit_message = send_with_retries(model.name, messages)
commit_message = simple_send_with_retries(model.name, messages)
if commit_message:
break