File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -140,6 +140,8 @@ processing:
140140storage :
141141 enabled : true
142142 backends :
143+ # Vector database configuration - Choose either ChromaDB or Qdrant
144+ # ChromaDB (default)
143145 - name : " default_vector"
144146 storage_type : " vector_db"
145147 backend : " chromadb"
@@ -148,6 +150,24 @@ storage:
148150 path : " ${CONTEXT_PATH:.}/persist/chromadb"
149151 collection_prefix : " opencontext"
150152
153+ # Qdrant (alternative vector database)
154+ # Uncomment to use Qdrant instead of ChromaDB:
155+ # - name: "default_vector"
156+ # storage_type: "vector_db"
157+ # backend: "qdrant"
158+ # config:
159+ # # Vector size MUST match your embedding model's output dimension
160+ # vector_size: 1536 # Set this to match embedding_model.output_dim above (line 37)
161+ #
162+ # # Local mode (uses file-based storage):
163+ # path: "${CONTEXT_PATH:.}/persist/qdrant"
164+ #
165+ # # Server mode (comment out 'path' above and uncomment the settings below):
166+ # # host: "localhost"
167+ # # port: 6333
168+ # # https: false
169+ # # api_key: "${QDRANT_API_KEY}" # Optional: API key for authentication
170+
151171 - name : " document_store"
152172 storage_type : " document_db"
153173 backend : " sqlite"
You can’t perform that action at this time.
0 commit comments