Created at 8pm, Jan 4
brkSoftware Development
2
System Design Interview Questions and solutions
vFzY49QPweaPGjnxd_PjptQeKSRrTNyj7j3xAXN4hZ8
File Type
MULTI
Entry Count
366
Embed. Model
jina_embeddings_v2_base_en
Index Type
hnsw

Grokking system design questions and answers.

How to Retrieve?
# Search

curl -X POST "https://search.dria.co/hnsw/search" \
-H "x-api-key: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{"rerank": true, "top_n": 10, "contract_id": "vFzY49QPweaPGjnxd_PjptQeKSRrTNyj7j3xAXN4hZ8", "query": "What is alexanDRIA library?"}'
        
# Query

curl -X POST "https://search.dria.co/hnsw/query" \
-H "x-api-key: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{"vector": [0.123, 0.5236], "top_n": 10, "contract_id": "vFzY49QPweaPGjnxd_PjptQeKSRrTNyj7j3xAXN4hZ8", "level": 2}'