From c7be5065f828e45718fd389a85705f33d4511014 Mon Sep 17 00:00:00 2001 From: Sameer Kankute Date: Thu, 15 Jan 2026 08:35:08 +0530 Subject: [PATCH] fix mypy error in caching.py --- litellm/types/caching.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litellm/types/caching.py b/litellm/types/caching.py index bb4ea416b87..ad2ffeaf9bd 100644 --- a/litellm/types/caching.py +++ b/litellm/types/caching.py @@ -27,6 +27,8 @@ CachingSupportedCallTypes = Literal[ "text_completion", "arerank", "rerank", + "responses", + "aresponses", ]