Skip to content

Commit

Permalink
super cls defination match
Browse files Browse the repository at this point in the history
  • Loading branch information
raspawar committed Dec 13, 2024
1 parent 56dc079 commit d9272be
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions libs/ai-endpoints/tests/integration_tests/test_standard.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ def chat_model_params(self) -> dict:
return {"model": "meta/llama-3.1-8b-instruct"}

@pytest.mark.xfail(reason="anthropic-style list content not supported")
def test_tool_message_histories_list_content(self, model: BaseChatModel) -> None:
return super().test_tool_message_histories_list_content(model)
def test_tool_message_histories_list_content(
self, model: BaseChatModel, my_adder_tool: BaseTool
) -> None:
return super().test_tool_message_histories_list_content(model, my_adder_tool)

@pytest.mark.xfail(reason="Empty AIMessage content not supported")
def test_tool_message_error_status(
Expand Down

0 comments on commit d9272be

Please sign in to comment.