feat: Add junior model information to announcement for senior edit format

This commit is contained in:
Paul Gauthier (aider) 2024-09-25 11:17:34 -07:00
parent 0a7e5f313f
commit f8cef655f0

View file

@ -184,6 +184,10 @@ class Coder:
output = f"Weak model: {weak_model.name}"
lines.append(output)
if self.edit_format == "senior":
output = f"Junior model: {main_model.junior_model.name} with {main_model.junior_edit_format} edit format"
lines.append(output)
# Repo
if self.repo:
rel_repo_dir = self.repo.get_rel_repo_dir()