From 7a4a956eff5d9d3f72c9101e3b253db52b1a42d5 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 19 Nov 2024 12:07:08 -0800 Subject: [PATCH] fix: Remove unexpected `skip_name` argument in `_copy_fields()` method --- aider/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/models.py b/aider/models.py index 99d804aac..b16930a1e 100644 --- a/aider/models.py +++ b/aider/models.py @@ -845,7 +845,7 @@ class Model(ModelSettings): for ms in MODEL_SETTINGS: # direct match, or match "provider/" if model == ms.name: - self._copy_fields(ms, skip_name=False) + self._copy_fields(ms) exact_match = True break # Continue to apply overrides