diff --git a/litellm/caching/dual_cache.py b/litellm/caching/dual_cache.py index 34ae3638a5b..acfe8dbf392 100644 --- a/litellm/caching/dual_cache.py +++ b/litellm/caching/dual_cache.py @@ -126,7 +126,7 @@ class DualCache(BaseCache): return result except Exception as e: - verbose_logger.error(f"LiteLLM Cache: Excepton async add_cache: {str(e)}") + verbose_logger.error(f"LiteLLM Cache: Exception async add_cache: {str(e)}") raise e def get_cache( @@ -356,7 +356,7 @@ class DualCache(BaseCache): await self.redis_cache.async_set_cache(key, value, **kwargs) except Exception as e: verbose_logger.exception( - f"LiteLLM Cache: Excepton async add_cache: {str(e)}" + f"LiteLLM Cache: Exception async add_cache: {str(e)}" ) # async_batch_set_cache @@ -383,7 +383,7 @@ class DualCache(BaseCache): ) except Exception as e: verbose_logger.exception( - f"LiteLLM Cache: Excepton async add_cache: {str(e)}" + f"LiteLLM Cache: Exception async add_cache: {str(e)}" ) async def async_increment_cache(