mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 06:44:59 +00:00
cleanup
This commit is contained in:
parent
547ae142ba
commit
f0f0c330d7
2 changed files with 4 additions and 4 deletions
|
@ -5,7 +5,7 @@ import git
|
|||
import pathspec
|
||||
|
||||
from aider import prompts, utils
|
||||
from aider.models import Model
|
||||
from aider.models import DEFAULT_WEAK_MODEL_NAME, Model
|
||||
from aider.sendchat import simple_send_with_retries
|
||||
|
||||
from .dump import dump # noqa: F401
|
||||
|
@ -22,7 +22,7 @@ class GitRepo:
|
|||
if models:
|
||||
self.models = models
|
||||
else:
|
||||
self.models = [Model("gpt-3.5-turbo")]
|
||||
self.models = [Model(DEFAULT_WEAK_MODEL_NAME)]
|
||||
|
||||
if git_dname:
|
||||
check_fnames = [git_dname]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue