Full stack app for basic semantic & neural search
how to use
- run qdrant storage using this command
docker run -p 6333:6333 -p 6334:6334 \
-v $(pwd)/qdrant_storage:/qdrant/storage:z \
qdrant/qdrant
- run backend
python cool_api/main.py
- run frontend
cd frontend
pnpm dev
- got frontend url to access UI (http://localhost:5173/)
Thanks