
Guides
What is Jev?
A System One model. Not a chatbot. Named after Jevons. This What is Jev guide is independent — not affiliated with TypeSafe AI.
What is Jev, in one paragraph: TypeSafe AI launched Jev on 15 September 2026 after two years in stealth. The founder, Diogo Almeida, previously worked on RLHF methods behind InstructGPT and ChatGPT. Jev is the company’s flagship model and the first public System One model — a class of models trained to make fast, structured decisions that software can use directly. You send state (a string, object, or array) and a map of typed questions. Jev returns answers under the same keys — a Choice, a Score, or a Noul — with probabilities. It does not generate text. There is nothing to parse.
If you asked “what is Jev” because a blog said it is 200× faster than a frontier LLM, the vendor’s own comparison is on System One tasks, not on writing a novel. What is Jev good at is the decision inside the request path: route, score, gate. What is Jev bad at is language. Jev Patterns only publishes jobs in the first bucket.
Why “System One”
Kahneman’s System One is fast, associative judgment. TypeSafe uses the name for models that skip chain-of-thought prose and emit a decision your code can branch on. They also describe a training method, Reinforcement Learning for Calibrated Decisions (RLCD), as the counterpart to RLHF’s preference-for-prose. You do not need to believe the branding to use the API. You do need to believe the contract: typed answers, closed criteria, probabilities you can threshold.
Jev currently accepts text only. Images, audio, and video are not supported yet. OCR first if you must, then send the text as state. Context at launch: 64k tokens per request, with 32k for state plus the longest question — TypeSafe’s published budget. Re-read docs.typesafe.ai if you are near the limit.
Latency and price (vendor figures)
TypeSafe’s public figures at launch: end-to-end response time about 70–500ms. Input about $0.042 per million tokens ($42 per billion). Output unmetered, because Jev is not sampling a reply. Questions in one request are evaluated in parallel against the same state, so adding a Noul barely moves the clock. Rate limits documented for jev-1.13.0 include 1,200 requests per minute and a very large token-per-second cap — confirm on the models page before you plan capacity.
The public alias is jev-latest (documented as pointing at jev-1.13.0). The HTTP route is POST https://api.typesafe.ai/v1/systemone. Official product: typesafe.ai. Aliases move when a release ships; pin a versioned id if a threshold is a deploy gate.
Named after Jevons
Jevons’ paradox: as a resource gets cheaper to use, total use often rises. Cheap, calibrated decisions will be called in places nobody would have spent a frontier LLM turn. That is the point of a library of schemas — the decision is cheap enough to put on every ticket, every chunk, every agent step. What is Jev for, operationally: high-frequency judgment with a closed answer space.
What is Jev not
Not a chatbot. Not JSON mode on a writer. Not function calling. Those still sample tokens, even when a grammar keeps the braces valid. See Jev vs ChatGPT, Jev vs JSON mode, and Jev vs function calling. If the user needs a paragraph, you are in the wrong building — when not to use Jev.
A minimal What is Jev request
State can be as small as a ticket string. Questions can be a single Choice. The response keys match the question keys. That is the whole What is Jev contract at the wire:
{
"model": "jev-latest",
"state": { "ticket": "Password reset email never arrives" },
"questions": {
"department": {
"type": "choice",
"instructions": "Which queue owns this?",
"criteria": {
"account": "Login, identity, reset mail",
"billing": "Charges and invoices",
"technical": "Product bugs and outages",
"other": "None of the above"
}
}
}
}There is no messages array. There is no system prompt asking Jev to be a helpful assistant. What is Jev, mechanically: an evaluator of state against typed questions. If you find yourself adding “explain your reasoning,” you have left the product. Put the explanation in your UI after you branch on department.choice and department.confidence.
What is Jev in an existing stack
Beside a helpdesk: classify and score, then let macros or humans talk. Beside RAG: score chunks and gate drafts. Beside an agent: pick the next tool and whether to stop. Beside a form: intent Choice, then CRM. What is Jev not in those stacks: the thing the user reads. Official SDK notes (Netlify AI Gateway and TypeSafe’s own clients) default to jev-latest. Jev Patterns schemas are the questions you pass into those clients. Still independent. Still not affiliated with TypeSafe AI.
Jev Patterns is independent and not affiliated with TypeSafe AI. We collect reusable request shapes. We do not host the model. Read Choice, Score, Noul next, or skip to the catalog, or try Jev Studio.
What is Jev — FAQ
- What is Jev?
- Jev is TypeSafe AI’s flagship System One model. You send state and typed questions; it returns Choice, Score, and Noul answers with probabilities. It does not generate text.
- What is a System One model?
- TypeSafe uses System One for models built to make fast, structured decisions software can use directly — Kahneman’s fast-judgment namesake, not a chatbot. Jev is the first public System One model.
- How do I call Jev?
- POST https://api.typesafe.ai/v1/systemone with model jev-latest (currently documented as jev-1.13.0). Official docs: docs.typesafe.ai.
- Does Jev write emails or code?
- No. What is Jev not: a writer. Use an LLM to write. Use Jev to judge, route, and gate.
- Is this What is Jev guide official?
- No. Jev Patterns is independent and not affiliated with TypeSafe AI. Treat vendor docs as source of truth.
- Why is it named Jev?
- After Jevons’ paradox: as a resource gets cheaper, total use often rises. Cheap calibrated decisions belong on every ticket and chunk.
Next
Next in the Jev guides
Last reviewed 21 September 2026. Independent of TypeSafe AI.


