fix: update llama stack build --run to use new start_stack.sh signature

fixes #2188
This commit is contained in:
Matthew Farrellee 2025-05-16 08:58:01 -04:00
parent 7aae8fadbf
commit 71cfda6a04

View file

@ -254,7 +254,7 @@ def run_stack_build_command(args: argparse.Namespace) -> None:
if not os.path.exists(str(config.external_providers_dir)):
os.makedirs(str(config.external_providers_dir), exist_ok=True)
run_args = formulate_run_args(args.image_type, args.image_name, config, args.template)
run_args.extend([run_config, str(os.getenv("LLAMA_STACK_PORT", 8321))])
run_args.extend([str(os.getenv("LLAMA_STACK_PORT", 8321)), "--config", run_config])
run_command(run_args)