 curl -X POST http://localhost:3002/collections -d '{"name": "quotes", "index_type": "hnsw"}' -H 'Content-Type: application/json'
 curl -X POST http://localhost:3002/collections/quotes/text -H 'Content-Type: application/json' -d '{"text": "beats bear battlestar galactica"}'
 curl -X POST http://localhost:3002/collections/quotes/text -H 'Content-Type: application/json' -d '{"text": "I just want to lie on the beach and eat hot dogs", "metadata": {"author": "kevin malone"}}'
 curl -X POST http://localhost:3002/collections/quotes/text -H 'Content-Type: application/json' -d '{"text": "who is the best boss", "metadata": {"tags": [1,2,3]}}'
 curl -X POST http://localhost:3002/collections/quotes/text -H 'Content-Type: application/json' -d '{"text": "would an idiot do that?", "metadata": {"serie": "the office"}}'
 curl -X POST http://localhost:3002/collections/quotes/search/text -H 'Content-Type: application/json' -d '{"query": "games", "k": 2}' | jq
