mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-09 19:29:18 +00:00
A few bug fixes for covering corner cases
This commit is contained in:
parent
a05599c67a
commit
353c7dc82a
4 changed files with 30 additions and 23 deletions
|
|
@ -22,7 +22,7 @@ def available_templates_specs() -> List[BuildConfig]:
|
|||
import yaml
|
||||
|
||||
template_specs = []
|
||||
for p in TEMPLATES_PATH.rglob("*.yaml"):
|
||||
for p in TEMPLATES_PATH.rglob("*build.yaml"):
|
||||
with open(p, "r") as f:
|
||||
build_config = BuildConfig(**yaml.safe_load(f))
|
||||
template_specs.append(build_config)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue