Created at 2pm, Jan 8
omerArtificial Intelligence
1
Some Yann LeCun Talks
j8yLRSKqJI4BkrzGKMBBgAgSjmab4zu_lfupWYqoktU
File Type
MULTI
Entry Count
337
Embed. Model
text_embedding_ada_002
Index Type
hnsw

10 talks given by Yann LeCun, and his biography

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