Lots of groundwork and the app runs but not currently working to generate embeddings.

This commit is contained in:
2026-01-13 21:48:42 -05:00
parent 5ce3a30588
commit 98ea050bd8
11 changed files with 431 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
version: '3.8'
services:
qdrant:
image: qdrant/qdrant:latest
container_name: vector-search-qdrant
ports:
- "6333:6333"
- "6334:6334"
volumes:
- qdrant_storage:/qdrant/storage
environment:
- QDRANT__SERVICE__API_GRPC_PORT=6334
- QDRANT__SERVICE__HTTP_PORT=6333
volumes:
qdrant_storage: