mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-30 07:39:38 +00:00
update msgs
This commit is contained in:
parent
89518da9d8
commit
33c175dc0a
2 changed files with 7 additions and 1 deletions
|
@ -34,6 +34,7 @@ class StackBuild(Subcommand):
|
||||||
"config",
|
"config",
|
||||||
type=str,
|
type=str,
|
||||||
default=None,
|
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",
|
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",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -135,6 +135,11 @@ class StackConfigure(Subcommand):
|
||||||
f.write(yaml.dump(to_write, sort_keys=False))
|
f.write(yaml.dump(to_write, sort_keys=False))
|
||||||
|
|
||||||
cprint(
|
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",
|
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",
|
||||||
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue