Overview
Jev is TypeSafe AI’s System One model. Instead of generating text, it evaluates astate against typed questions and returns calibrated probabilities, so a following step can branch on a number rather than parse a sentence. It fits classification, routing, rubric scoring, and guardrail checks.
Key Features
TYPESAFE_JEV_EVALUATE- Evaluate one
stateagainst many questions in a single request - Three question types:
noul— yes/no. Returnsnoul, the probability (0–1) that the answer is yeschoice— pick one option.criteriamaps each option to a description (ornull). Returnschoice,probabilities,confidencescore— rate along ordered levels.criteriais an array of at least two level descriptions. Returnsscore(can land between levels),legend,probabilities,confidence
stateaccepts plain text or a JSON object/arraymodeldefaults tojev-latest. Pin a version such asjev-1.13.0if you tune confidence thresholds- Rate-limit (
429) and overload (529) responses are retried automatically
- Evaluate one
Authentication
This tool requires your own TypeSafe AI API key; Jinba API credit is not available for it. See the TypeSafe AI quick start to obtain one. Note: Treat API keys as sensitive information and never commit them to public repositories.Limits
- Text only, with a budget of 64k tokens per request (32k for
stateplus the longest question) - English is the most accurate language. For other languages, check
confidencebefore acting on an answer
Example: Triage a Support Ticket
{{steps.triage.result.answers.department.choice}} or {{steps.triage.result.answers.is_urgent.noul}}.