Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/components/generators/chat/test_hugging_face_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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},
)

Expand Down
Loading