curl --request POST \
--url https://api.gately.ai/v1/rerank \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "mixr-v1",
"query": "What are the health benefits of exercise?",
"documents": [
"Exercise improves cardiovascular health and reduces stress.",
"Proper nutrition is essential for overall well-being.",
"Sleep quality affects mental and physical performance."
],
"top_n": 2
}
'