mirror of
https://github.com/open-webui/open-webui
synced 2025-06-26 18:26:48 +00:00
refac: Rename Qdrant multi-tenancy variable for improved clarity and consistency
This commit is contained in:
@@ -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_MULTITENANCY
|
||||
from open_webui.config import VECTOR_DB, ENABLE_QDRANT_MULTITENANCY_MODE
|
||||
|
||||
|
||||
class Vector:
|
||||
@@ -16,7 +16,7 @@ class Vector:
|
||||
|
||||
return MilvusClient()
|
||||
case VectorType.QDRANT:
|
||||
if QDRANT_MULTITENANCY:
|
||||
if ENABLE_QDRANT_MULTITENANCY_MODE:
|
||||
from open_webui.retrieval.vector.dbs.qdrant_multitenancy import QdrantClient
|
||||
|
||||
return QdrantClient()
|
||||
|
||||
Reference in New Issue
Block a user