diff --git a/libs/partners/huggingface/tests/integration_tests/test_standard.py b/libs/partners/huggingface/tests/integration_tests/test_standard.py index 27f5c2368a7..e3f0cacf706 100644 --- a/libs/partners/huggingface/tests/integration_tests/test_standard.py +++ b/libs/partners/huggingface/tests/integration_tests/test_standard.py @@ -16,7 +16,7 @@ class TestHuggingFaceEndpoint(ChatModelIntegrationTests): @property def chat_model_params(self) -> dict: llm = HuggingFaceEndpoint( # type: ignore[call-arg] - repo_id="Qwen/Qwen2.5-72B-Instruct", + repo_id="meta-llama/Llama-4-Maverick-17B-128E-Instruct", task="conversational", provider="fireworks-ai", temperature=0, @@ -59,12 +59,6 @@ class TestHuggingFaceEndpoint(ChatModelIntegrationTests): model, my_adder_tool=my_adder_tool ) - @pytest.mark.xfail(reason=("Not implemented")) - def test_structured_few_shot_examples( - self, model: BaseChatModel, my_adder_tool: BaseTool - ) -> None: - super().test_structured_few_shot_examples(model, my_adder_tool=my_adder_tool) - @property def has_tool_choice(self) -> bool: return False