From 64767578d692c609928735fbb410ccd092f5a15c Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Wed, 26 Feb 2025 05:11:54 -0500 Subject: [PATCH] fix(CLI): Missing default for --image-type in stack run command Signed-off-by: Yuan Tang --- llama_stack/cli/stack/run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/llama_stack/cli/stack/run.py b/llama_stack/cli/stack/run.py index 79f604d1a..7d6af8120 100644 --- a/llama_stack/cli/stack/run.py +++ b/llama_stack/cli/stack/run.py @@ -73,6 +73,7 @@ class StackRun(Subcommand): type=str, help="Image Type used during the build. This can be either conda or container or venv.", choices=["conda", "container", "venv"], + default="conda", ) def _run_stack_run_cmd(self, args: argparse.Namespace) -> None: