Created at 7am, Feb 6
andthattooGeneral
69
Wikipedia[simple]
8bj7kna4ojvVvH2zDS34icC9R5S6vRjK1lCpSfZ1AU4
File Type
CUSTOM
Entry Count
191554
Embed. Model
jina_embeddings_v2_base_en
Index Type
hnsw

Wikipedia[simple] is a RAG built using the '20220301.simple' subset of HuggingFace dataset wikipedia. It contains ~250,000 articles which 50.000 more than original dataset. The RAG is built using the jina-embeddings-v2-base-en model.

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": "8bj7kna4ojvVvH2zDS34icC9R5S6vRjK1lCpSfZ1AU4", "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": "8bj7kna4ojvVvH2zDS34icC9R5S6vRjK1lCpSfZ1AU4", "level": 2}'