接口
POST/v1/models/{id}/evaluate
认证:Authorization: Bearer $ARIA_PIN_KEY
路径参数
string
required
要评估的模型 ID。
请求体
string
required
由同一用户拥有的、已验证的数据集 ID。
响应
string
评估运行的唯一标识符。
string
排队状态(例如
queued)。Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
使用选定的验证数据集为模型入队一次基准评估运行。
/v1/models/{id}/evaluate
认证:Authorization: Bearer $ARIA_PIN_KEY
queued)。curl -X POST http://<pin-host>:8001/v1/models/mod_123/evaluate \
-H "Authorization: Bearer $ARIA_PIN_KEY" \
-H "Content-Type: application/json" \
-d '{"dataset_id":"ds_456"}'
{
"eval_id": "ev_1712345678901234567",
"status": "queued"
}
Was this page helpful?