rename simple_send_with_retries -> send_with_retries

This commit is contained in:
Paul Gauthier 2024-08-02 10:35:10 -03:00
parent b543dda664
commit d619edf6e9
5 changed files with 19 additions and 26 deletions

View file

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