接口
GET/v1/evaluations/{id}
认证:Authorization: Bearer $ARIA_PIN_KEY
路径参数
string
required
要检索的评估 ID。
响应
string
评估运行的唯一标识符。
string
当前评估状态。
string
风险摘要(例如
ok)。string
运行失败时的错误消息,否则为空字符串。
object
基准指标 JSON 对象。具体结构取决于所用数据集与基准。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
获取单次评估运行,包括各基准指标与风险评估。
/v1/evaluations/{id}
认证:Authorization: Bearer $ARIA_PIN_KEY
ok)。curl http://<pin-host>:8001/v1/evaluations/ev_1712345678901234567 \
-H "Authorization: Bearer $ARIA_PIN_KEY"
{
"eval_id": "ev_1712345678901234567",
"status": "succeeded",
"risk": "ok",
"error": "",
"metrics": {
"score": 0.87,
"details": {}
}
}
Was this page helpful?