Jev recipe / implementation steps
Build a Jev content moderation first pass
Make allow, review, and block outcomes visible so policy changes and uncertain cases remain auditable.
Build this decision in three steps
01Write criteria in the same language used by policy reviewers.
02Return a Choice plus confidence for the first moderation pass.
03Version policy criteria and keep low-confidence cases in a review queue.
schema / example
{
"moderation": {
"type": "choice",
"instructions": "Classify this content",
"criteria": {
"allow": "Safe to publish",
"review": "Needs a human check",
"block": "Violates policy"
}
}
} Copy this into the Playground, then replace the state and criteria with your own.