diff --git a/litellm/tests/test_completion.py b/litellm/tests/test_completion.py index a73599cbe..5bd78b33f 100644 --- a/litellm/tests/test_completion.py +++ b/litellm/tests/test_completion.py @@ -39,15 +39,15 @@ def test_completion_claude_stream(): except Exception as e: pytest.fail(f"Error occurred: {e}") -def test_completion_hf_api(): - try: - user_message = "write some code to find the sum of two numbers" - messages = [{ "content": user_message,"role": "user"}] - response = completion(model="stabilityai/stablecode-completion-alpha-3b-4k", messages=messages, custom_llm_provider="huggingface") - # Add any assertions here to check the response - print(response) - except Exception as e: - pytest.fail(f"Error occurred: {e}") +# def test_completion_hf_api(): +# try: +# user_message = "write some code to find the sum of two numbers" +# messages = [{ "content": user_message,"role": "user"}] +# response = completion(model="stabilityai/stablecode-completion-alpha-3b-4k", messages=messages, custom_llm_provider="huggingface") +# # Add any assertions here to check the response +# print(response) +# except Exception as e: +# pytest.fail(f"Error occurred: {e}") # def test_completion_hf_deployed_api(): # try: