feat(cli): make venv the default image type (#3187)

We have removed conda now so we can make `venv` the default. Just doing
`llama stack build --distro starter` is now enough for the most part.
This commit is contained in:
Ashwin Bharambe 2025-08-18 14:58:23 -07:00 committed by GitHub
parent 7519ab4024
commit 2e7ca07423
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 19 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=None, # no default so we can detect if a user specified --image-type and override image_type in the config
default=ImageType.VENV.value,
)
self.parser.add_argument(