fix: Remove unexpected skip_name argument in _copy_fields() method

This commit is contained in:
Paul Gauthier (aider) 2024-11-19 12:07:08 -08:00
parent aabbf5a72f
commit 7a4a956eff

View file

@ -845,7 +845,7 @@ class Model(ModelSettings):
for ms in MODEL_SETTINGS:
# direct match, or match "provider/<model>"
if model == ms.name:
self._copy_fields(ms, skip_name=False)
self._copy_fields(ms)
exact_match = True
break # Continue to apply overrides