Authorization: Bearer ********************{
"model": "MODEL_ID",
"query": "专企云算是什么?",
"documents": [
"候选文档一",
"候选文档二"
],
"top_n": 2
}curl --location 'https://zhuanqicloud.com/v1/rerank' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "MODEL_ID",
"query": "专企云算是什么?",
"documents": [
"候选文档一",
"候选文档二"
],
"top_n": 2
}'{
"id": "rerank_example",
"results": [
{
"index": 0,
"relevance_score": 0.98,
"document": {
"text": "候选文档一"
}
}
]
}