From b4b2dbf005142e0a483d46a07a88a19814899403 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Wed, 30 Aug 2023 16:11:49 -0700 Subject: [PATCH] clean up print statements --- litellm/llms/huggingface_restapi.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/litellm/llms/huggingface_restapi.py b/litellm/llms/huggingface_restapi.py index c885040a58..a07f07fbe0 100644 --- a/litellm/llms/huggingface_restapi.py +++ b/litellm/llms/huggingface_restapi.py @@ -84,9 +84,6 @@ class HuggingfaceRestAPILLM: ) return response.iter_lines() else: - print(f"completion url: {completion_url}") - print(f"headers: {self.headers}") - print(f"data: {data}") response = requests.post( completion_url, headers=self.headers, data=json.dumps(data) )