점수 생성
curl --request POST \
--url https://api.example.com/v2/{entity}/{project}/scores \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"prediction_id": "<string>",
"scorer": "<string>",
"value": 123,
"evaluation_run_id": "<string>"
}
'{
"score_id": "<string>"
}점수를 생성합니다.
POST
/
v2
/
{entity}
/
{project}
/
scores
점수 생성
curl --request POST \
--url https://api.example.com/v2/{entity}/{project}/scores \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"prediction_id": "<string>",
"scorer": "<string>",
"value": 123,
"evaluation_run_id": "<string>"
}
'{
"score_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