mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-03 17:29:01 +00:00
clean up prints
This commit is contained in:
parent
421fa980bc
commit
8ec1a04c85
1 changed files with 0 additions and 5 deletions
|
@ -44,11 +44,7 @@ async def construct_stack_for_test(
|
||||||
scoring_fns: Optional[List[ScoringFnInput]] = None,
|
scoring_fns: Optional[List[ScoringFnInput]] = None,
|
||||||
eval_tasks: Optional[List[EvalTaskInput]] = None,
|
eval_tasks: Optional[List[EvalTaskInput]] = None,
|
||||||
) -> TestStack:
|
) -> TestStack:
|
||||||
from termcolor import cprint
|
|
||||||
|
|
||||||
sqlite_file = tempfile.NamedTemporaryFile(delete=False, suffix=".db")
|
sqlite_file = tempfile.NamedTemporaryFile(delete=False, suffix=".db")
|
||||||
cprint(providers, "red")
|
|
||||||
|
|
||||||
run_config = dict(
|
run_config = dict(
|
||||||
image_name="test-fixture",
|
image_name="test-fixture",
|
||||||
apis=apis,
|
apis=apis,
|
||||||
|
@ -62,7 +58,6 @@ async def construct_stack_for_test(
|
||||||
eval_tasks=eval_tasks or [],
|
eval_tasks=eval_tasks or [],
|
||||||
)
|
)
|
||||||
run_config = parse_and_maybe_upgrade_config(run_config)
|
run_config = parse_and_maybe_upgrade_config(run_config)
|
||||||
print("construct_stack_for_test", run_config)
|
|
||||||
try:
|
try:
|
||||||
remote_config = remote_provider_config(run_config)
|
remote_config = remote_provider_config(run_config)
|
||||||
if not remote_config:
|
if not remote_config:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue