Merge pull request #6050 from RobinBially/main

feat: add qdrant vector db connector
This commit is contained in:
Timothy Jaeryang Baek
2024-10-09 12:12:48 -07:00
committed by GitHub
4 changed files with 184 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)
####################################