fix(python-bridge): preserve Qdrant facade dispatch after rebase

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
Yujong Lee 2026-09-21 21:36:19 +00:00
parent acbec828db
commit ff2ca804b5
2 changed files with 2 additions and 1 deletions

View file

@ -256,7 +256,7 @@ impl FacadeGuard {
"RedisClusterCache",
"redis",
),
"qdrant_semantic" => (
("qdrant_semantic", _) => (
"litellm.caching.qdrant_semantic_cache",
"QdrantSemanticCache",
"qdrant-semantic",

View file

@ -104,6 +104,7 @@ impl NativeResponseCache {
match self {
Self::Memory(_) => None,
Self::Redis { cache, .. } => Some(cache.backend().topology()),
Self::QdrantSemantic(_) => None,
}
}