update msgs

This commit is contained in:
Xi Yan 2024-09-18 10:53:05 -07:00
parent 89518da9d8
commit 33c175dc0a
2 changed files with 7 additions and 1 deletions

View file

@ -34,6 +34,7 @@ class StackBuild(Subcommand):
"config",
type=str,
default=None,
nargs="*",
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",
)

View file

@ -135,6 +135,11 @@ class StackConfigure(Subcommand):
f.write(yaml.dump(to_write, sort_keys=False))
cprint(
f"> YAML configuration has been written to {run_config_file}. You can now run `llama stack run {run_config_file}`",
f"> YAML configuration has been written to {run_config_file}.",
color="blue",
)
cprint(
f"You can now run `llama stack run {image_name} --port PORT` or `llama stack run {run_config_file} --port PORT`",
color="green",
)