curl -X POST http://127.0.0.1:8000/v1/ingest/docs \
-H "Content-Type: application/json" \
-d '{"files":["files/refund-policy.pdf"]}'
curl -X POST http://127.0.0.1:8000/v1/chunk \
-H "Content-Type: application/json" \
-d '{"markdown":[{"id":"refund-policy","text":"..."}]}'
curl -X POST http://127.0.0.1:8000/v1/embed \
-H "Content-Type: application/json" \
-d '{"chunks":[{"id":"refund-policy-0","text":"..."}],"provider":"voyage","model":"voyage-3"}'
curl -X POST http://127.0.0.1:8000/v1/store \
-H "Content-Type: application/json" \
-d '{"embedded_chunks":[{"id":"refund-policy-0","text":"...","embedding":[0.1,0.2]}],"vector_db":"qdrant","collection":"support","url":"http://localhost:6333"}'