From 89518da9d87103f71526f0c53e24514cef03a27a Mon Sep 17 00:00:00 2001 From: Xi Yan Date: Wed, 18 Sep 2024 10:44:17 -0700 Subject: [PATCH] improve comments --- llama_stack/cli/stack/build.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/llama_stack/cli/stack/build.py b/llama_stack/cli/stack/build.py index e428843bd..d6a95c568 100644 --- a/llama_stack/cli/stack/build.py +++ b/llama_stack/cli/stack/build.py @@ -31,9 +31,10 @@ class StackBuild(Subcommand): def _add_arguments(self): self.parser.add_argument( - "--config", + "config", type=str, - help="Path to a config file to use for the build. You may find example configs in llama_stack/distribution/example_configs", + default=None, + help="Path to a config file to use for the build. You may find example configs in llama_stack/distribution/example_configs. If not defined, you will be prompted for entering wizard", ) self.parser.add_argument(