From 2ed2c0bd26d113377f08d1d2db044d96037b84b9 Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Wed, 26 Feb 2025 15:23:44 -0500 Subject: [PATCH] fix(cli): Missing default for --image-type in stack run command (#1274) # What does this PR do? I think this got accidentally removed as part of https://github.com/meta-llama/llama-stack/pull/1250. cc @leseb ## Test Plan After the change, this arg is no longer required. 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: