From 2b605be457594926707d353aa4a6f8cdd5ba1a9d Mon Sep 17 00:00:00 2001 From: Jesse White <5281939+byjlw@users.noreply.github.com> Date: Tue, 7 May 2024 14:54:40 -0700 Subject: [PATCH] help outputs the default model dir (#713) * help outputs the default model dir --- cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.py b/cli.py index db5417c0a..7fbe2ea3a 100644 --- a/cli.py +++ b/cli.py @@ -295,7 +295,7 @@ def _add_arguments_common(parser): "--model-directory", type=Path, default=default_model_dir, - help="The directory to store downloaded model artifacts", + help=f"The directory to store downloaded model artifacts. Default: {default_model_dir}", ) parser.add_argument( "--port",