revert: "feat(cli): make venv the default image type" (#3196)

Reverts llamastack/llama-stack#3187
This commit is contained in:
Ashwin Bharambe 2025-08-18 15:31:01 -07:00 committed by GitHub
parent 2e7ca07423
commit 89661b984c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 19 additions and 3 deletions

View file

@ -59,7 +59,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.VENV.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(