mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-03 17:29:01 +00:00
fix: Remove print statements
This commit is contained in:
parent
f939117dbf
commit
de5fc92803
1 changed files with 1 additions and 4 deletions
|
@ -58,9 +58,7 @@ class NVIDIAEvalImpl(
|
||||||
|
|
||||||
async def register_benchmark(self, task_def: Benchmark) -> None:
|
async def register_benchmark(self, task_def: Benchmark) -> None:
|
||||||
"""Register a benchmark as an evaluation configuration."""
|
"""Register a benchmark as an evaluation configuration."""
|
||||||
|
await self._evaluator_post(
|
||||||
print(task_def.metadata)
|
|
||||||
res = await self._evaluator_post(
|
|
||||||
"/v1/evaluation/configs",
|
"/v1/evaluation/configs",
|
||||||
{
|
{
|
||||||
"namespace": "nvidia",
|
"namespace": "nvidia",
|
||||||
|
@ -69,7 +67,6 @@ class NVIDIAEvalImpl(
|
||||||
**task_def.metadata,
|
**task_def.metadata,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
print(res)
|
|
||||||
|
|
||||||
async def run_eval(
|
async def run_eval(
|
||||||
self,
|
self,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue