mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-27 18:50:41 +00:00
Fix tgi doc
This commit is contained in:
parent
1086b500f9
commit
89f5093dfc
6 changed files with 132 additions and 135 deletions
|
@ -82,7 +82,10 @@ def collect_template_dependencies(template_dir: Path) -> tuple[str, list[str]]:
|
|||
template = template_func()
|
||||
normal_deps, special_deps = get_provider_dependencies(template.providers)
|
||||
# Combine all dependencies in order: normal deps, special deps, server deps
|
||||
all_deps = normal_deps + special_deps + SERVER_DEPENDENCIES
|
||||
all_deps = sorted(list(set(normal_deps + SERVER_DEPENDENCIES))) + sorted(
|
||||
list(set(special_deps))
|
||||
)
|
||||
|
||||
return template.name, all_deps
|
||||
except Exception:
|
||||
return None, []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue