groq[patch]: update rate limit in integration tests (#25177)

Divide by ~2 to account for testing python 3.8 and 3.12 in parallel.
This commit is contained in:
ccurme 2024-08-08 09:33:25 -04:00 committed by GitHub
parent 4828c441a7
commit 59b8850909
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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):