From 59b88509097d5df0e60edeb2b7eb500707016d62 Mon Sep 17 00:00:00 2001 From: ccurme Date: Thu, 8 Aug 2024 09:33:25 -0400 Subject: [PATCH] groq[patch]: update rate limit in integration tests (#25177) Divide by ~2 to account for testing python 3.8 and 3.12 in parallel. --- 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 82f23697a3d..e701c726f1d 100644 --- a/libs/partners/groq/tests/integration_tests/test_standard.py +++ b/libs/partners/groq/tests/integration_tests/test_standard.py @@ -11,7 +11,7 @@ from langchain_standard_tests.integration_tests import ( from langchain_groq import ChatGroq -rate_limiter = InMemoryRateLimiter(requests_per_second=0.45) +rate_limiter = InMemoryRateLimiter(requests_per_second=0.2) class BaseTestGroq(ChatModelIntegrationTests):