add qdrant as vector db

This commit is contained in:
Robin Bially
2024-10-09 12:51:43 +02:00
parent 3f892583c3
commit 878a570a2c
4 changed files with 186 additions and 0 deletions

View File

@@ -901,6 +901,9 @@ CHROMA_HTTP_SSL = os.environ.get("CHROMA_HTTP_SSL", "false").lower() == "true"
MILVUS_URI = os.environ.get("MILVUS_URI", f"{DATA_DIR}/vector_db/milvus.db")
# Qdrant
QDRANT_URI = os.environ.get("QDRANT_URI", None)
####################################
# Information Retrieval (RAG)
####################################