mirror of
https://github.com/tiennm99/litellm.git
synced 2026-08-11 00:25:15 +00:00
fix(utils.py): set redis_usage_cache to none by default
This commit is contained in:
@@ -48,7 +48,9 @@ class ProxyLogging:
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self, user_api_key_cache: DualCache, redis_usage_cache: Optional[RedisCache]
|
||||
self,
|
||||
user_api_key_cache: DualCache,
|
||||
redis_usage_cache: Optional[RedisCache] = None,
|
||||
):
|
||||
## INITIALIZE LITELLM CALLBACKS ##
|
||||
self.call_details: dict = {}
|
||||
|
||||
@@ -61,7 +61,7 @@ from litellm.proxy.utils import DBClient
|
||||
from starlette.datastructures import URL
|
||||
from litellm.caching import DualCache
|
||||
|
||||
proxy_logging_obj = ProxyLogging(user_api_key_cache=DualCache())
|
||||
proxy_logging_obj = ProxyLogging(user_api_key_cache=DualCache(), redis_usage_cache=None)
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
|
||||
Reference in New Issue
Block a user