From 9df978b511f10d5e249efdd98de2a12191cd65a1 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Thu, 27 Mar 2025 22:31:38 -0700 Subject: [PATCH] fix typo --- litellm/proxy/proxy_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/proxy_server.py b/litellm/proxy/proxy_server.py index d7e62f98d0..91d700b843 100644 --- a/litellm/proxy/proxy_server.py +++ b/litellm/proxy/proxy_server.py @@ -1532,7 +1532,7 @@ class ProxyConfig: cache_params = {} if "cache_params" in litellm_settings: cache_params_in_config = litellm_settings["cache_params"] - # overwrie cache_params with cache_params_in_config + # overwrite cache_params with cache_params_in_config cache_params.update(cache_params_in_config) cache_type = cache_params.get("type", "redis")