diff --git a/litellm/tests/test_completion.py b/litellm/tests/test_completion.py index b3e1928a8e..04f4cc5115 100644 --- a/litellm/tests/test_completion.py +++ b/litellm/tests/test_completion.py @@ -1138,7 +1138,7 @@ def test_get_hf_task_for_model(): model = "roneneldan/TinyStories-3M" model_type = litellm.llms.huggingface_restapi.get_hf_task_for_model(model) print(f"model:{model}, model type: {model_type}") - assert model_type == None + assert model_type == "text-generation" # test_get_hf_task_for_model()