diff --git a/llama_stack/cli/stack/configure.py b/llama_stack/cli/stack/configure.py index 56f4feceb..2bb3f7313 100644 --- a/llama_stack/cli/stack/configure.py +++ b/llama_stack/cli/stack/configure.py @@ -17,7 +17,7 @@ class StackConfigure(Subcommand): self.parser = subparsers.add_parser( "configure", prog="llama stack configure", - description="configure a llama stack distribution", + description="Configure a llama stack distribution", formatter_class=argparse.RawTextHelpFormatter, ) self._add_arguments() diff --git a/llama_stack/cli/stack/run.py b/llama_stack/cli/stack/run.py index c32e51fca..73536491b 100644 --- a/llama_stack/cli/stack/run.py +++ b/llama_stack/cli/stack/run.py @@ -19,7 +19,7 @@ class StackRun(Subcommand): self.parser = subparsers.add_parser( "run", prog="llama stack run", - description="""start the server for a Llama Stack Distribution. You should have already built (or downloaded) and configured the distribution.""", + description="""Start the server for a Llama Stack Distribution. You should have already built (or downloaded) and configured the distribution.""", formatter_class=argparse.RawTextHelpFormatter, ) self._add_arguments()