From 3aba169dd4bd21f4998927591db68f30e0d4b33a Mon Sep 17 00:00:00 2001 From: Matthew Farrellee Date: Thu, 15 May 2025 12:36:58 -0400 Subject: [PATCH] remove default for --image-type so we can detect user intent --- llama_stack/cli/stack/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/cli/stack/build.py b/llama_stack/cli/stack/build.py index 93e7d9b22..2c402beeb 100644 --- a/llama_stack/cli/stack/build.py +++ b/llama_stack/cli/stack/build.py @@ -49,7 +49,7 @@ class StackBuild(Subcommand): type=str, help="Image Type to use for the build. If not specified, will use the image type from the template config.", choices=[e.value for e in ImageType], - default=ImageType.CONDA.value, + default=None, # no default so we can detect if a user specified --image-type and override image_type in the config ) self.parser.add_argument(