mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-28 19:04:19 +00:00
precommit again
This commit is contained in:
parent
4694780d23
commit
a324ceb9a9
1 changed files with 1 additions and 4 deletions
|
@ -10,7 +10,6 @@ from pathlib import Path
|
|||
|
||||
import pytest
|
||||
|
||||
|
||||
"""
|
||||
Script for running client-sdk on AsyncLlamaStackAsLibraryClient with templates
|
||||
|
||||
|
@ -36,9 +35,7 @@ CLIENT_SDK_TESTS_RELATIVE_PATH = "tests/client-sdk/"
|
|||
def main(parser: argparse.ArgumentParser):
|
||||
args = parser.parse_args()
|
||||
templates_dir = REPO_ROOT / "llama_stack" / "templates"
|
||||
user_specified_templates = (
|
||||
[templates_dir / t for t in args.templates] if args.templates else []
|
||||
)
|
||||
user_specified_templates = [templates_dir / t for t in args.templates] if args.templates else []
|
||||
for d in templates_dir.iterdir():
|
||||
if d.is_dir() and d.name != "__pycache__":
|
||||
template_configs = list(d.rglob("run.yaml"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue