From ff2ca804b5633ee1d47315d7e6e3fd5f8dbdea6c Mon Sep 17 00:00:00 2001 From: Yujong Lee Date: Mon, 21 Sep 2026 21:36:19 +0000 Subject: [PATCH] fix(python-bridge): preserve Qdrant facade dispatch after rebase Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- litellm-rust/crates/python-bridge/src/cache/facade.rs | 2 +- litellm-rust/crates/python-bridge/src/cache/native.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/litellm-rust/crates/python-bridge/src/cache/facade.rs b/litellm-rust/crates/python-bridge/src/cache/facade.rs index 6aa075600b8..f307d109fb1 100644 --- a/litellm-rust/crates/python-bridge/src/cache/facade.rs +++ b/litellm-rust/crates/python-bridge/src/cache/facade.rs @@ -256,7 +256,7 @@ impl FacadeGuard { "RedisClusterCache", "redis", ), - "qdrant_semantic" => ( + ("qdrant_semantic", _) => ( "litellm.caching.qdrant_semantic_cache", "QdrantSemanticCache", "qdrant-semantic", diff --git a/litellm-rust/crates/python-bridge/src/cache/native.rs b/litellm-rust/crates/python-bridge/src/cache/native.rs index 6e28b8414d3..b93f15e59f3 100644 --- a/litellm-rust/crates/python-bridge/src/cache/native.rs +++ b/litellm-rust/crates/python-bridge/src/cache/native.rs @@ -104,6 +104,7 @@ impl NativeResponseCache { match self { Self::Memory(_) => None, Self::Redis { cache, .. } => Some(cache.backend().topology()), + Self::QdrantSemantic(_) => None, } }