Run batch evaluations
Typical Workflow
Step 1: Create a Batch Execution
curl -X POST "https://api.scorable.ai/v1/judges/{my_judge_id}/batch-execute/" \
-H "Authorization: Api-Key ${SCORABLE_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"inputs": [
{
"request": "What is the capital of France?",
"response": "Paris is the capital and largest city of France."
},
{
"request": "What is the capital of Spain?",
"response": "Madrid is the capital of Spain."
},
{
"request": "What is the capital of Italy?",
"response": "Rome is the capital city of Italy."
}
],
"tags": ["my-app-v1.2"]
}'Step 2: Poll for Status
Step 3: Retrieve Results
Last updated