chore!: remove --image-type and --image-name from llama stack run (#3714)

# What does this PR do?
Simplifies the CLI. I don't think these options make sense anymore: only
venv is supported as image-type, and users can simply activate the env
before running `llama stack` as they do any other project.

## Test Plan





---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with
[ReviewStack](https://reviewstack.dev/llamastack/llama-stack/pull/3714).
* __->__ #3714
* #3711
This commit is contained in:
ehhuang 2025-10-07 20:26:44 -07:00 committed by GitHub
parent 372dedb3d6
commit 9b9ff3b9bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 48 additions and 52 deletions

View file

@ -444,12 +444,24 @@ def _run_stack_build_command_from_build_config(
cprint("Build Successful!", color="green", file=sys.stderr)
cprint(f"You can find the newly-built distribution here: {run_config_file}", color="blue", file=sys.stderr)
cprint(
"You can run the new Llama Stack distro via: "
+ colored(f"llama stack run {run_config_file} --image-type {build_config.image_type}", "blue"),
color="green",
file=sys.stderr,
)
if build_config.image_type == LlamaStackImageType.VENV:
cprint(
"You can run the new Llama Stack distro (after activating "
+ colored(image_name, "cyan")
+ ") via: "
+ colored(f"llama stack run {run_config_file}", "blue"),
color="green",
file=sys.stderr,
)
elif build_config.image_type == LlamaStackImageType.CONTAINER:
cprint(
"You can run the container with: "
+ colored(
f"docker run -p 8321:8321 -v ~/.llama:/root/.llama localhost/{image_name} --port 8321", "blue"
),
color="green",
file=sys.stderr,
)
return distro_path
else:
return _generate_run_config(build_config, build_dir, image_name)