test: add unit tests for vector stores of Milvus, Qdrant and Weaviate (#3688)

This commit is contained in:
Bowen Liang
2024-04-24 21:52:42 +08:00
committed by GitHub
parent 8ca5aa1190
commit 9cec8c1750
15 changed files with 211 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
version: '3'
services:
# Qdrant vector store.
qdrant:
image: langgenius/qdrant:v1.7.3
restart: always
volumes:
- ./volumes/qdrant:/qdrant/storage
environment:
QDRANT_API_KEY: 'difyai123456'
ports:
- "6333:6333"