메인 콘텐츠로 건너뛰기
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로 필터합니다. evaluation 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

이 예측이 특정 evaluation run에 연결된 경우의 evaluation run ID입니다.

wb_user_id
string | null

직접 설정하지 마세요. 서버가 이 필드를 자동으로 채웁니다.