Created at 4pm, Feb 8
benjaminArtificial Intelligence
1
German RAG
MsOKWCM1iDTDj3lqG_lE-pvd93GilqT5H-Me_EGsvOE
File Type
CUSTOM
Entry Count
3462
Embed. Model
text_embedding_3_small
Index Type
hnsw

This dataset is derived from the GermanDPR dataset and enhances it by providing fully formulated answers instead of answer spans. It can be used to finetune for retrieval augmented generation tasks (RAG) in German. It was taken from https://huggingface.co/datasets/DiscoResearch/germanrag

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": "MsOKWCM1iDTDj3lqG_lE-pvd93GilqT5H-Me_EGsvOE", "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": "MsOKWCM1iDTDj3lqG_lE-pvd93GilqT5H-Me_EGsvOE", "level": 2}'