mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-04 19:55:00 +00:00
Add option to skip model availability check
This commit is contained in:
parent
2a8c7ef70d
commit
45298f8af6
2 changed files with 9 additions and 1 deletions
|
@ -142,6 +142,12 @@ def main(argv=None, input=None, output=None, force_git_root=None):
|
|||
default=models.GPT4.name,
|
||||
help=f"Specify the model to use for the main chat (default: {models.GPT4.name})",
|
||||
)
|
||||
core_group.add_argument(
|
||||
"--skip-model-availability-check",
|
||||
metavar="SKIP_MODEL_AVAILABILITY_CHECK",
|
||||
default=False,
|
||||
help="Override to skip model availability check (default: False)",
|
||||
)
|
||||
core_group.add_argument(
|
||||
"-3",
|
||||
action="store_const",
|
||||
|
@ -465,6 +471,7 @@ def main(argv=None, input=None, output=None, force_git_root=None):
|
|||
main_model,
|
||||
args.edit_format,
|
||||
io,
|
||||
args.skip_model_availability_check,
|
||||
##
|
||||
fnames=fnames,
|
||||
git_dname=git_dname,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue