mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 17:55:01 +00:00
rename
This commit is contained in:
parent
46b4a4381c
commit
05cdd9f2ec
1 changed files with 9 additions and 11 deletions
|
@ -192,26 +192,24 @@ def main(argv=None, input=None, output=None, force_git_root=None):
|
||||||
const=sonnet_model,
|
const=sonnet_model,
|
||||||
help=f"Use {sonnet_model} model for the main chat",
|
help=f"Use {sonnet_model} model for the main chat",
|
||||||
)
|
)
|
||||||
default_4_model = "gpt-4-0613"
|
gpt_4_model = "gpt-4-0613"
|
||||||
core_group.add_argument(
|
core_group.add_argument(
|
||||||
"--4",
|
"--4",
|
||||||
"-4",
|
"-4",
|
||||||
action="store_const",
|
action="store_const",
|
||||||
dest="model",
|
dest="model",
|
||||||
const=default_4_model,
|
const=gpt_4_model,
|
||||||
help=f"Use {default_4_model} model for the main chat",
|
help=f"Use {gpt_4_model} model for the main chat",
|
||||||
)
|
)
|
||||||
default_4_turbo_model = "gpt-4-turbo"
|
gpt_4_turbo_model = "gpt-4-turbo"
|
||||||
core_group.add_argument(
|
core_group.add_argument(
|
||||||
"--4turbo",
|
|
||||||
"--4-turbo",
|
|
||||||
"--4-turbo-vision",
|
"--4-turbo-vision",
|
||||||
action="store_const",
|
action="store_const",
|
||||||
dest="model",
|
dest="model",
|
||||||
const=default_4_turbo_model,
|
const=gpt_4_turbo_model,
|
||||||
help=f"Use {default_4_turbo_model} model for the main chat",
|
help=f"Use {gpt_4_turbo_model} model for the main chat",
|
||||||
)
|
)
|
||||||
default_3_model_name = "gpt-3.5-turbo"
|
gpt_3_model_name = "gpt-3.5-turbo"
|
||||||
core_group.add_argument(
|
core_group.add_argument(
|
||||||
"--35turbo",
|
"--35turbo",
|
||||||
"--35-turbo",
|
"--35-turbo",
|
||||||
|
@ -219,8 +217,8 @@ def main(argv=None, input=None, output=None, force_git_root=None):
|
||||||
"-3",
|
"-3",
|
||||||
action="store_const",
|
action="store_const",
|
||||||
dest="model",
|
dest="model",
|
||||||
const=default_3_model_name,
|
const=gpt_3_model_name,
|
||||||
help=f"Use {default_3_model_name} model for the main chat",
|
help=f"Use {gpt_3_model_name} model for the main chat",
|
||||||
)
|
)
|
||||||
core_group.add_argument(
|
core_group.add_argument(
|
||||||
"--voice-language",
|
"--voice-language",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue