From acbec828db40a3365d5657b59c0cdc4fef159b8d Mon Sep 17 00:00:00 2001 From: Yujong Lee Date: Mon, 21 Sep 2026 21:34:49 +0000 Subject: [PATCH] fix(python-bridge): fall back to Python when qdrant_api_key changes after binding Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- litellm-rust/crates/python-bridge/src/cache/facade.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/litellm-rust/crates/python-bridge/src/cache/facade.rs b/litellm-rust/crates/python-bridge/src/cache/facade.rs index dbcbd9bda92..6aa075600b8 100644 --- a/litellm-rust/crates/python-bridge/src/cache/facade.rs +++ b/litellm-rust/crates/python-bridge/src/cache/facade.rs @@ -290,8 +290,9 @@ impl FacadeGuard { "redis_flush_size", ][..], "qdrant_semantic" => &[ - "qdrant_api_base", - "collection_name", + "qdrant_api_base", + "qdrant_api_key", + "collection_name", "similarity_threshold", "embedding_model", "vector_size",