Skip to content

Commit

Permalink
groq[patch]: update rate limit in integration tests (#25177)
Browse files Browse the repository at this point in the history
Divide by ~2 to account for testing python 3.8 and 3.12 in parallel.
  • Loading branch information
ccurme authored Aug 8, 2024
1 parent 4828c44 commit 59b8850
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from langchain_groq import ChatGroq

rate_limiter = InMemoryRateLimiter(requests_per_second=0.45)
rate_limiter = InMemoryRateLimiter(requests_per_second=0.2)


class BaseTestGroq(ChatModelIntegrationTests):
Expand Down

0 comments on commit 59b8850

Please sign in to comment.