We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4c8bae commit bfed5f6Copy full SHA for bfed5f6
libs/langchain_v1/langchain/rate_limiters/__init__.py
@@ -0,0 +1,13 @@
1
+"""Base abstraction and in-memory implementation of rate limiters.
2
+
3
+These rate limiters can be used to limit the rate of requests to an API.
4
5
+The rate limiters can be used together with `BaseChatModel`.
6
+"""
7
8
+from langchain_core.rate_limiters import BaseRateLimiter, InMemoryRateLimiter
9
10
+__all__ = [
11
+ "BaseRateLimiter",
12
+ "InMemoryRateLimiter",
13
+]
0 commit comments