Skip to content

Commit cc076ed

Browse files
authored
fix(huggingface): update model used in standard tests (#32116)
1 parent 6d71bb8 commit cc076ed

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

libs/partners/huggingface/tests/integration_tests/test_standard.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def chat_model_class(self) -> type[BaseChatModel]:
1616
@property
1717
def chat_model_params(self) -> dict:
1818
llm = HuggingFaceEndpoint( # type: ignore[call-arg]
19-
repo_id="Qwen/Qwen2.5-72B-Instruct",
19+
repo_id="meta-llama/Llama-4-Maverick-17B-128E-Instruct",
2020
task="conversational",
2121
provider="fireworks-ai",
2222
temperature=0,
@@ -59,12 +59,6 @@ def test_tool_message_histories_list_content(
5959
model, my_adder_tool=my_adder_tool
6060
)
6161

62-
@pytest.mark.xfail(reason=("Not implemented"))
63-
def test_structured_few_shot_examples(
64-
self, model: BaseChatModel, my_adder_tool: BaseTool
65-
) -> None:
66-
super().test_structured_few_shot_examples(model, my_adder_tool=my_adder_tool)
67-
6862
@property
6963
def has_tool_choice(self) -> bool:
7064
return False

0 commit comments

Comments
 (0)