Jev primitive · Score

Use Score when a bounded number is the useful answer.

Score is suited to ranking, fit, urgency, or quality signals that need a documented scale.

JevClassify is an independent tool and is not affiliated with, sponsored by, or endorsed by TypeSafe AI.

Quick answer

What is Jev Score?

Score turns an input and rubric into a numeric signal. Define the scale, anchors, and interpretation yourself; do not present an uncalibrated score as certainty.

Example rubric

Input“Customer asks for an immediate refund after a duplicate charge.”
QuestionHow urgent is this ticket?
Scale0 = routine · 50 = needs review · 100 = immediate escalation
GuardrailStore the rubric with the score so downstream users know what it means.

Integration shape

const result = await experimental_evaluate({
  model: "typesafe-ai/jev",
  providerOptions: { typesafeai: { question: "How urgent is this ticket?", scale: { min: 0, max: 100 } } },
  input: ticketText
});

Score FAQ

What does Jev Score return?

Score is for a bounded numeric assessment when the provider contract defines the scale and interpretation.

Can a score be treated as a probability?

No. A score is an application signal, not automatically a calibrated probability or a factual guarantee.

Need a production decision? Validate the provider contract, rate limits, and safety requirements before shipping.

Try the live classifier