curl http://localhost:3002/collections
curl -X POST http://localhost:3002/collections -H 'Content-Type: application/json' -d '{"name": "test", "index_type": "hnsw"}'
curl -X POST http://localhost:3002/collections/test/text -H 'Content-Type: application/json' -d '{"text": "hi"}'
curl -X POST http://localhost:3002/collections/test/text -H 'Content-Type: application/json' -d '{"text": "oy"}'
curl -X POST http://localhost:3002/collections/test/text -H 'Content-Type: application/json' -d '{"text": "world"}'
curl -X POST http://localhost:3002/collections/test/text -H 'Content-Type: application/json' -d '{"text": "bonjour"}'
curl -X POST http://localhost:3002/collections/test/text -H 'Content-Type: application/json' -d '{"text": "coucou"}'
curl -X POST http://localhost:3002/collections/test/text -H 'Content-Type: application/json' -d '{"text": "hello"}'

