feat: Add --deepseek-beta bool arg to use DeepSeek Coder via the beta API endpoint

This commit is contained in:
Paul Gauthier (aider) 2024-08-12 15:06:55 -07:00
parent 5f8df315e4
commit 485418d917
2 changed files with 11 additions and 2 deletions

View file

@ -117,6 +117,12 @@ def get_parser(default_config_files, git_root):
const=deepseek_model,
help=f"Use {deepseek_model} model for the main chat",
)
group.add_argument(
"--deepseek-beta",
action="store_true",
help="Uses DeepSeek Coder via the beta API endpoint",
default=False,
)
##########
group = parser.add_argument_group("Model Settings")