fix: Update Qdrant multi-tenancy variable name for consistency in configuration

This commit is contained in:
Kiet Trinh
2025-05-15 08:02:58 +00:00
parent 184d8dfd7e
commit 485bd7666c
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
from open_webui.retrieval.vector.main import VectorDBBase
from open_webui.retrieval.vector.type import VectorType
from open_webui.config import VECTOR_DB, QDRANT_MULTI_TENANCY
from open_webui.config import VECTOR_DB, QDRANT_MULTITENANCY
class Vector:
@@ -16,7 +16,7 @@ class Vector:
return MilvusClient()
case VectorType.QDRANT:
if QDRANT_MULTI_TENANCY:
if QDRANT_MULTITENANCY:
from open_webui.retrieval.vector.dbs.qdrant_multitenancy import QdrantClient
return QdrantClient()