From d57715bf46d1eac54e2b95dddea0ca9916a66440 Mon Sep 17 00:00:00 2001 From: mateo-berri <277851410+mateo-berri@users.noreply.github.com> Date: Thu, 20 Aug 2026 18:23:40 -0700 Subject: [PATCH] chore(constants): drop the redundant comment on the semantic cache deadline --- litellm/constants.py | 1 - 1 file changed, 1 deletion(-) diff --git a/litellm/constants.py b/litellm/constants.py index 0791721aa00..b2f973d7410 100644 --- a/litellm/constants.py +++ b/litellm/constants.py @@ -436,7 +436,6 @@ DEFAULT_REQUEST_TIMEOUT_SECONDS: Final[float] = 6000.0 # deadline and connect handshake (see ``http_handler`` cached handler paths). COMPLETION_HTTP_FALLBACK_SECONDS: Final[float] = 600.0 HTTP_HANDLER_CONNECT_TIMEOUT_SECONDS: Final[float] = 5.0 -# A cache lookup is an optimization, so it gets its own short deadline rather than the request timeout above. SEMANTIC_CACHE_EMBEDDING_TIMEOUT_SECONDS: Final[float] = float( os.getenv("SEMANTIC_CACHE_EMBEDDING_TIMEOUT_SECONDS", "5.0") )