Coverage for src / local_deep_research / web_search_engines / rate_limiting / __init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.12.0, created at 2026-01-11 00:51 +0000
« prev ^ index » next coverage.py v7.12.0, created at 2026-01-11 00:51 +0000
1"""
2Adaptive rate limiting module for search engines.
3"""
5from .exceptions import AdaptiveRetryError, RateLimitConfigError, RateLimitError
6from .tracker import AdaptiveRateLimitTracker, get_tracker
8__all__ = [
9 "AdaptiveRateLimitTracker",
10 "AdaptiveRetryError",
11 "RateLimitConfigError",
12 "RateLimitError",
13 "get_tracker",
14]