mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-03 19:24:59 +00:00
feat: Reorder Junior and Weak Model announcements
This commit is contained in:
parent
f0d02f2c76
commit
0ded63cd31
1 changed files with 4 additions and 4 deletions
|
@ -180,10 +180,6 @@ class Coder:
|
||||||
output += ", infinite output"
|
output += ", infinite output"
|
||||||
lines.append(output)
|
lines.append(output)
|
||||||
|
|
||||||
if weak_model is not main_model:
|
|
||||||
output = f"Weak model: {weak_model.name}"
|
|
||||||
lines.append(output)
|
|
||||||
|
|
||||||
if self.edit_format == "senior":
|
if self.edit_format == "senior":
|
||||||
output = (
|
output = (
|
||||||
f"Junior model: {main_model.junior_model.name} with"
|
f"Junior model: {main_model.junior_model.name} with"
|
||||||
|
@ -191,6 +187,10 @@ class Coder:
|
||||||
)
|
)
|
||||||
lines.append(output)
|
lines.append(output)
|
||||||
|
|
||||||
|
if weak_model is not main_model:
|
||||||
|
output = f"Weak model: {weak_model.name}"
|
||||||
|
lines.append(output)
|
||||||
|
|
||||||
# Repo
|
# Repo
|
||||||
if self.repo:
|
if self.repo:
|
||||||
rel_repo_dir = self.repo.get_rel_repo_dir()
|
rel_repo_dir = self.repo.get_rel_repo_dir()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue