fix: Ensure default model is set only if not already specified

This commit is contained in:
Paul Gauthier 2025-03-11 19:07:53 -07:00 committed by Paul Gauthier (aider)
parent dc6040adda
commit 5e40974fdd

View file

@ -121,5 +121,6 @@ def handle_deprecated_model_args(args, io):
)
# Set the model
args.model = model_name
if not args.model:
args.model = model_name
break