curl --location 'https://moyunapi.com/v1/rerank' \
--header 'Accept;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "rerank-v2.0",
"query": "法国的首都是哪里?",
"documents": [
"巴黎是法国的首都。",
"柏林是德国的首都。",
"埃菲尔铁塔位于巴黎。"
],
"top_n": 2,
"return_documents": true
}'{
"id": "rerank-abc123",
"results": [
{
"index": 0,
"relevance_score": 0.9987,
"document": {
"text": "巴黎是法国的首都。"
}
},
{
"index": 2,
"relevance_score": 0.8123,
"document": {
"text": "埃菲尔铁塔位于巴黎。"
}
}
],
"meta": {
"billed_units": {
"search_units": 1
}
}
}