# Copyright (c) 2024 Microsoft Corporation. # Licensed under the MIT License """Rate limit module for graphrag-llm.""" from graphrag_llm.rate_limit.rate_limit_factory import ( create_rate_limiter, register_rate_limiter, ) from graphrag_llm.rate_limit.rate_limiter import RateLimiter __all__ = [ "RateLimiter", "create_rate_limiter", "register_rate_limiter", ]