メインコンテンツへスキップ
GET
/
v2
/
{entity}
/
{project}
/
evaluation_runs
評価 run の一覧表示
curl --request GET \
  --url https://api.example.com/v2/{entity}/{project}/evaluation_runs \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "evaluation_run_id": "<string>",
    "evaluation": "<string>",
    "model": "<string>",
    "status": "<string>",
    "started_at": "2023-11-07T05:31:56Z",
    "finished_at": "2023-11-07T05:31:56Z",
    "summary": {}
  }
]

承認

Authorization
string
header
必須

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

パスパラメータ

entity
string
必須
project
string
必須

クエリパラメータ

evaluations
string[] | null

評価参照でフィルタリング

models
string[] | null

モデル参照でフィルタリング

evaluation_run_ids
string[] | null

evaluation run ID でフィルタリング

limit
integer | null

返す evaluation run の最大件数

offset
integer | null

スキップする evaluation run の数

レスポンス

JSONL 形式のデータストリーム

evaluation_run_id
string
必須

評価 run の ID

evaluation
string
必須

評価への参照 (weave:// URI)

model
string
必須

モデルへの参照 (weave:// URI)

status
string | null

evaluation run のステータス

started_at
string<date-time> | null

evaluation run の開始時刻

finished_at
string<date-time> | null

evaluation run の終了時刻

summary
Summary · object

evaluation run のサマリーデータ