A large corpus of WikiHow having more than 175000 entries. It is very useful for edutional training purpose. Data is in Json format and taken from https://huggingface.co/datasets/ajibawa-2023/WikiHow.
# 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": "MNxn_2U0QNpgjuXJXTGO_5g0AJKy1jrajqaoa7e_iiM", "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": "MNxn_2U0QNpgjuXJXTGO_5g0AJKy1jrajqaoa7e_iiM", "level": 2}'