From de5fc92803dd0099e0fde305858af7b656954d7b Mon Sep 17 00:00:00 2001 From: Jash Gulabrai Date: Mon, 7 Apr 2025 10:53:13 -0400 Subject: [PATCH] fix: Remove print statements --- llama_stack/providers/remote/eval/nvidia/eval.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/llama_stack/providers/remote/eval/nvidia/eval.py b/llama_stack/providers/remote/eval/nvidia/eval.py index 89ed3c4c0..9e0bb3faf 100644 --- a/llama_stack/providers/remote/eval/nvidia/eval.py +++ b/llama_stack/providers/remote/eval/nvidia/eval.py @@ -58,9 +58,7 @@ class NVIDIAEvalImpl( async def register_benchmark(self, task_def: Benchmark) -> None: """Register a benchmark as an evaluation configuration.""" - - print(task_def.metadata) - res = await self._evaluator_post( + await self._evaluator_post( "/v1/evaluation/configs", { "namespace": "nvidia", @@ -69,7 +67,6 @@ class NVIDIAEvalImpl( **task_def.metadata, }, ) - print(res) async def run_eval( self,