From 5a3aaae6dc332a518b06e9d77b06e35047c10af2 Mon Sep 17 00:00:00 2001 From: ccurme Date: Mon, 19 Aug 2024 09:58:06 -0400 Subject: [PATCH] groq[patch]: update model used for llama tests (#25542) `llama-3.1-8b-instant` often fails some of the tool calling standard tests. Here we update to `llama-3.1-70b-versatile`. --- libs/partners/groq/tests/integration_tests/test_standard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/partners/groq/tests/integration_tests/test_standard.py b/libs/partners/groq/tests/integration_tests/test_standard.py index e701c726f1d..6feab74f606 100644 --- a/libs/partners/groq/tests/integration_tests/test_standard.py +++ b/libs/partners/groq/tests/integration_tests/test_standard.py @@ -28,7 +28,7 @@ class TestGroqLlama(BaseTestGroq): @property def chat_model_params(self) -> dict: return { - "model": "llama-3.1-8b-instant", + "model": "llama-3.1-70b-versatile", "temperature": 0, "rate_limiter": rate_limiter, }