Boolean
Estimate how likely something is to be true.
“Was a refund issued?”Returns P(true)
Run the real TypeSafe Jev model online.
Test structured AI decisions — no signup required.
Give Jev a state and a typed question.
Run it to see the decision and probabilities.
No TypeSafe account required. Choose an example, edit the inputs, then run the real model.
Jev is a System One model from TypeSafe AI. It is designed for fast, structured decisions rather than open-ended chat.
Give it context and a typed question. Get a bounded answer with probabilities your software can use.
The same context. The right kind of answer.
Estimate how likely something is to be true.
“Was a refund issued?”Returns P(true)
Select one option from a defined set.
“Which team should handle this?”Returns a choice + probabilities
Evaluate a situation against an ordered rubric.
“How urgent is this incident?”Returns a score + probabilities
General-purpose LLMs often produce open-ended text. Jev is designed for bounded, typed decisions with probabilities. The right model depends on the task.
Drafting, explaining, open-ended chat
Generated textRouting, verifying, scoring
Typed decision + probabilityUse the AI SDK’s experimental evaluation API through Vercel AI Gateway. Keep your Gateway key on the server.
Read the evaluation API docsimport { createGateway, experimental_evaluate as evaluate } from 'ai';
const gateway = createGateway({
apiKey: process.env.AI_GATEWAY_API_KEY,
});
const result = await evaluate({
model: gateway.evaluationModel('typesafe-ai/jev'),
state: 'The support agent issued a full refund.',
questions: {
refunded: { type: 'boolean', instructions: 'Was a refund issued?' },
},
providerOptions: { gateway: { zeroDataRetention: true } },
});
console.log(result.answers.refunded.probability);This independent playground is free to use, with usage limits to keep it available. Requests may be temporarily rate limited.
Your own application uses your Vercel AI Gateway account and its usage-based pricing.
View current Jev API pricing