跳到正文

列出所有 profile 的时间线

GET
/v1/timelines

按 profile 返回 benchmark timeline 条目。可通过 modelmodel_vendorinference_providercase_id 做精确匹配过滤。

参数

查询参数

limit

Return the latest N matching entries. Defaults to 1024.
The server caps 0 and values above 1024 to 1024. Negative and
non-integer values return 400.

类型
integer
最小值
0
默认
1024
model

Return only entries whose model exactly matches this value.

类型
string
model_vendor

Return only entries whose model_vendor exactly matches this value.

类型
string
inference_provider

Return only entries whose inference_provider exactly matches this value.

类型
string
case_id

Return only entries whose case_id exactly matches this value.

类型
string

响应

Timelines keyed by profile name

application/json
JSON
{
  
"profiles": {
  
  
"additionalProperties": {
  
  
  
"provider": "string",
  
  
  
"model": "string",
  
  
  
"model_vendor": "string",
  
  
  
"inference_provider": "string",
  
  
  
"entries": [
  
  
  
  
{
  
  
  
  
  
"run_id": "string",
  
  
  
  
  
"timestamp": "string",
  
  
  
  
  
"finished_at": "string",
  
  
  
  
  
"case_id": "string",
  
  
  
  
  
"profile": "string",
  
  
  
  
  
"success": true,
  
  
  
  
  
"total_score": 0,
  
  
  
  
  
"raw_score": 0,
  
  
  
  
  
"max_score": 0,
  
  
  
  
  
"normalized_score": 0,
  
  
  
  
  
"metrics": {
  
  
  
  
  
  
"read_file_calls": 0,
  
  
  
  
  
  
"write_file_calls": 0,
  
  
  
  
  
  
"list_dir_calls": 0,
  
  
  
  
  
  
"read_write_ratio": 0,
  
  
  
  
  
  
"pre_write_read_coverage": 0
  
  
  
  
  
},
  
  
  
  
  
"deductions": [
  
  
  
  
  
  
{
  
  
  
  
  
  
  
"name": "string",
  
  
  
  
  
  
  
"points": 0,
  
  
  
  
  
  
  
"description": "string"
  
  
  
  
  
  
}
  
  
  
  
  
],
  
  
  
  
  
"bonuses": [
  
  
  
  
  
  
{
  
  
  
  
  
  
  
"name": "string",
  
  
  
  
  
  
  
"points": 0,
  
  
  
  
  
  
  
"description": "string"
  
  
  
  
  
  
}
  
  
  
  
  
]
  
  
  
  
}
  
  
  
]
  
  
}
  
}
}

试验场

变量

示例