chore: rename templates to distributions

This commit is contained in:
Ashwin Bharambe 2025-08-04 09:44:55 -07:00
parent e5b542dd8e
commit d8f34d6e07
84 changed files with 241 additions and 242 deletions

View file

@ -39,7 +39,7 @@ def is_port_available(port: int, host: str = "localhost") -> bool:
def start_llama_stack_server(config_name: str) -> subprocess.Popen:
"""Start a llama stack server with the given config."""
cmd = f"uv run --with llama-stack llama stack build --template {config_name} --image-type venv --run"
cmd = f"uv run --with llama-stack llama stack build --distro {config_name} --image-type venv --run"
devnull = open(os.devnull, "w")
process = subprocess.Popen(
shlex.split(cmd),