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) )