mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-10 04:08:31 +00:00
style: fix the capitalization issue
Signed-off-by: reidliu <reid201711@gmail.com>
This commit is contained in:
parent
ab210ec59e
commit
a584b82bda
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ class StackConfigure(Subcommand):
|
||||||
self.parser = subparsers.add_parser(
|
self.parser = subparsers.add_parser(
|
||||||
"configure",
|
"configure",
|
||||||
prog="llama stack configure",
|
prog="llama stack configure",
|
||||||
description="configure a llama stack distribution",
|
description="Configure a llama stack distribution",
|
||||||
formatter_class=argparse.RawTextHelpFormatter,
|
formatter_class=argparse.RawTextHelpFormatter,
|
||||||
)
|
)
|
||||||
self._add_arguments()
|
self._add_arguments()
|
||||||
|
|
|
@ -19,7 +19,7 @@ class StackRun(Subcommand):
|
||||||
self.parser = subparsers.add_parser(
|
self.parser = subparsers.add_parser(
|
||||||
"run",
|
"run",
|
||||||
prog="llama stack 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,
|
formatter_class=argparse.RawTextHelpFormatter,
|
||||||
)
|
)
|
||||||
self._add_arguments()
|
self._add_arguments()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue