メインコンテンツへスキップ
GET
/
v2
/
{entity}
/
{project}
/
predictions
予測の一覧
curl --request GET \
  --url https://api.example.com/v2/{entity}/{project}/predictions \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "prediction_id": "<string>",
    "model": "<string>",
    "inputs": {},
    "output": "<unknown>",
    "evaluation_run_id": "<string>",
    "wb_user_id": "<string>"
  }
]

承認

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
必須

クエリパラメータ

evaluation_run_id
string | null

評価 run の ID でフィルター 評価 run ID でフィルター

limit
integer | null

返される予測の最大数

offset
integer | null

スキップする予測の数

レスポンス

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

prediction_id
string
必須

予測 ID

model
string
必須

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

inputs
Inputs · object
必須

予測への入力

output
any
必須

予測の出力

evaluation_run_id
string | null

この予測が関連付けられている場合の評価 run ID

wb_user_id
string | null

直接設定しないでください。サーバーがこのフィールドを自動的に設定します。