curl -X POST https://api.judge.example.com/judges \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Content Quality Judge",
"description": "Evaluates content quality based on clarity, accuracy, and completeness",
"content_type": "text",
"criteria": [
{
"name": "Clarity",
"description": "How clear and easy to understand the content is"
},
{
"name": "Accuracy",
"description": "Factual correctness and precision of information"
},
{
"name": "Completeness",
"description": "Coverage of all relevant aspects of the topic"
}
]
}'