接口
GET/v1/models/{id}/evaluations
认证:Authorization: Bearer $ARIA_PIN_KEY
路径参数
string
required
要列出其评估的模型 ID。
响应
array
评估对象列表。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
获取特定模型的全部评估运行,包括状态与风险摘要。
/v1/models/{id}/evaluations
认证:Authorization: Bearer $ARIA_PIN_KEY
curl http://<pin-host>:8001/v1/models/mod_123/evaluations \
-H "Authorization: Bearer $ARIA_PIN_KEY"
{
"items": [
{
"eval_id": "ev_1712345678901234567",
"status": "queued",
"risk": "ok",
"error": "",
"created_at": "2025-06-01T12:00:00Z"
}
]
}
Was this page helpful?