We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12daba6 commit 6d418baCopy full SHA for 6d418ba
libs/partners/mistralai/tests/integration_tests/test_standard.py
@@ -1,5 +1,6 @@
1
"""Standard LangChain interface tests."""
2
3
+import pytest
4
from langchain_core.language_models import BaseChatModel
5
from langchain_tests.integration_tests import ( # type: ignore[import-not-found]
6
ChatModelIntegrationTests, # type: ignore[import-not-found]
@@ -20,3 +21,7 @@ def chat_model_params(self) -> dict:
20
21
@property
22
def supports_json_mode(self) -> bool:
23
return True
24
+
25
+ @pytest.mark.xfail(reason=("MistralAI inconsistently fails to return valid fields"))
26
+ def test_structured_output_pydantic_2_v1(self, model: BaseChatModel) -> None:
27
+ super().test_structured_output_pydantic_2_v1(model)
0 commit comments