mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-25 16:13:25 +00:00
groq[patch]: update standard tests (#27744)
- Add xfail on integration test (fails [> 50% of the time](https://github.com/langchain-ai/langchain/actions/workflows/scheduled_test.yml)); - Remove xfail on passing unit test.
This commit is contained in:
parent
98bb3a02bd
commit
bd5ea18a6c
@ -49,3 +49,12 @@ class TestGroqLlama(BaseTestGroq):
|
|||||||
)
|
)
|
||||||
def test_tool_message_histories_string_content(self, model: BaseChatModel) -> None:
|
def test_tool_message_histories_string_content(self, model: BaseChatModel) -> None:
|
||||||
super().test_tool_message_histories_string_content(model)
|
super().test_tool_message_histories_string_content(model)
|
||||||
|
|
||||||
|
@pytest.mark.xfail(
|
||||||
|
reason=(
|
||||||
|
"Sometimes fails with 'Failed to call a function. "
|
||||||
|
"Please adjust your prompt.'"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
def test_bind_runnables_as_tools(self, model: BaseChatModel) -> None:
|
||||||
|
super().test_bind_runnables_as_tools(model)
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
from typing import Type
|
from typing import Type
|
||||||
|
|
||||||
import pytest
|
|
||||||
from langchain_core.language_models import BaseChatModel
|
from langchain_core.language_models import BaseChatModel
|
||||||
from langchain_standard_tests.unit_tests.chat_models import (
|
from langchain_standard_tests.unit_tests.chat_models import (
|
||||||
ChatModelUnitTests,
|
ChatModelUnitTests,
|
||||||
@ -15,7 +14,3 @@ class TestGroqStandard(ChatModelUnitTests):
|
|||||||
@property
|
@property
|
||||||
def chat_model_class(self) -> Type[BaseChatModel]:
|
def chat_model_class(self) -> Type[BaseChatModel]:
|
||||||
return ChatGroq
|
return ChatGroq
|
||||||
|
|
||||||
@pytest.mark.xfail(reason="Groq does not support tool_choice='any'")
|
|
||||||
def test_bind_tool_pydantic(self, model: BaseChatModel) -> None:
|
|
||||||
super().test_bind_tool_pydantic(model)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user