Skip to content

Commit

Permalink
mark test_tool_message_histories_list_content as xfail until anthropi…
Browse files Browse the repository at this point in the history
…c list content is supported
  • Loading branch information
mattf committed Sep 19, 2024
1 parent fa4018b commit ac7408e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions libs/ai-endpoints/tests/integration_tests/test_standard.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from typing import Type

import pytest
from langchain_core.language_models import BaseChatModel
from langchain_standard_tests.integration_tests import ChatModelIntegrationTests

Expand All @@ -16,3 +17,7 @@ def chat_model_class(self) -> Type[BaseChatModel]:
@property
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)

0 comments on commit ac7408e

Please sign in to comment.