From 7704abc03bab8a2c89afa2797f8c3b7fcf15317d Mon Sep 17 00:00:00 2001 From: Chester Curme Date: Fri, 28 Jun 2024 10:39:57 -0400 Subject: [PATCH] add xfail to groq/llama --- libs/partners/groq/tests/integration_tests/test_standard.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libs/partners/groq/tests/integration_tests/test_standard.py b/libs/partners/groq/tests/integration_tests/test_standard.py index 56b1bc93512fe..290fef253a82f 100644 --- a/libs/partners/groq/tests/integration_tests/test_standard.py +++ b/libs/partners/groq/tests/integration_tests/test_standard.py @@ -40,3 +40,9 @@ def chat_model_params(self) -> dict: "model": "llama3-8b-8192", "temperature": 0, } + + @pytest.mark.xfail( + reason=("Fails with 'Failed to call a function. Please adjust your prompt.'") + ) + def test_tool_message_histories_string_content(self, model: BaseChatModel) -> None: + super().test_tool_message_histories_string_content(model)