예측 생성
curl --request POST \
--url https://api.example.com/v2/{entity}/{project}/predictions \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "<string>",
"inputs": {},
"output": "<unknown>",
"evaluation_run_id": "<string>"
}
'{
"prediction_id": "<string>"
}예측을 생성합니다.
POST
/
v2
/
{entity}
/
{project}
/
predictions
예측 생성
curl --request POST \
--url https://api.example.com/v2/{entity}/{project}/predictions \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "<string>",
"inputs": {},
"output": "<unknown>",
"evaluation_run_id": "<string>"
}
'{
"prediction_id": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://wb-21fd5541-kb-refresh.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
인증
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
본문
application/json
응답
성공적인 응답
예측 ID
⌘I