fix: Remove print statements

This commit is contained in:
Jash Gulabrai 2025-04-07 10:53:13 -04:00
parent f939117dbf
commit de5fc92803

View file

@ -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,