feat: Add support for GPT-4 mini model

This commit is contained in:
Paul Gauthier 2024-08-09 18:09:42 -04:00 committed by Paul Gauthier (aider)
parent 3eda9297cf
commit bba0735878

View file

@ -82,6 +82,14 @@ def get_parser(default_config_files, git_root):
const=gpt_4o_model,
help=f"Use {gpt_4o_model} model for the main chat",
)
gpt_4o_mini_model = "gpt-4o-mini"
group.add_argument(
"--mini",
action="store_const",
dest="model",
const=gpt_4o_mini_model,
help=f"Use {gpt_4o_mini_model} model for the main chat",
)
gpt_4_turbo_model = "gpt-4-1106-preview"
group.add_argument(
"--4-turbo",