J.

Jev Appeal routing Code Example

Separate new evidence from a repeated disagreement.

This photo is mine; here is the original file metadata.

Appeal This photo is mine; here is the original file metadata.
Previous Reason ownership dispute

How should this appeal be handled?

0% Review new evidence.
Review new evidence 78%
Request evidence 15%
Duplicate appeal 7%

Send it to review new evidence.

Code
Conceptual pseudocode — not official Jev SDK syntax
// Conceptual pseudocode — not Jev SDK syntax
const state = {
  "appeal": "This photo is mine; here is the original file metadata.",
  "previous_reason": "ownership dispute"
};

const decision = await evaluateDecision({
  state,
  question: "How should this appeal be handled?",
  options: ["Review new evidence","Request evidence","Duplicate appeal"],
});

// Your adapter normalizes the provider response.
// Tune this example threshold on labelled data.
if (decision.outcome === "Review new evidence"
    && decision.probability >= 0.85) {
  reopenAppealReview(decision);
} else {
  queueForReview(decision);
}

This adapter illustrates the decision boundary. Check the official Jev docs for current API syntax.