diff --git a/test/components/generators/chat/test_hugging_face_api.py b/test/components/generators/chat/test_hugging_face_api.py index df7189ba21..9a77d2d726 100644 --- a/test/components/generators/chat/test_hugging_face_api.py +++ b/test/components/generators/chat/test_hugging_face_api.py @@ -832,13 +832,13 @@ def test_live_run_with_tools(self, tools): """ We test the round trip: generate tool call, pass tool message, generate response. - The model used here (Qwen/Qwen3-Next-80B-A3B-Instruct) is not gated and kept in a warm state. + The model used here (Qwen/Qwen3-VL-8B-Instruct) is not gated and kept in a warm state. """ chat_messages = [ChatMessage.from_user("What's the weather like in Paris?")] generator = HuggingFaceAPIChatGenerator( api_type=HFGenerationAPIType.SERVERLESS_INFERENCE_API, - api_params={"model": "Qwen/Qwen3-Next-80B-A3B-Instruct", "provider": "together"}, + api_params={"model": "Qwen/Qwen3-VL-8B-Instruct", "provider": "together"}, generation_kwargs={"temperature": 0.5}, )