On 15 September 2026, a San Francisco company called TypeSafe released a model named Jev. Three days later Vercel published its adoption numbers: almost 13% of the paid teams on its AI Gateway inside 24 hours, more than twice any previous model launch.
That level of adoption raises a question: what is Jev actually doing differently? Jev is not another model built around generating text. Its value comes from how it handles structured tasks, and that changes how you need to think about its capabilities, limitations, speed, and cost. So rather than focusing on the launch numbers alone, this article looks at the practical side of Jev.
- What does Jev actually do? The shape of a Jev call, before the marketing numbers.
- What is Jev good at, and what breaks it? TypeSafe publishes its own failure list.
- What does it cost and how fast is it? And how much weight the headline multiples carry.
What Jev Is
Take a support ticket: "I was charged twice for the same order. Can someone look into this?" Today you would send it to an LLM with a prompt asking for JSON, get back a sentence wrapped around it, parse that, and add a retry for when the shape comes back wrong.
With Jev you send the ticket text as state and a typed question beside it: which department handles this, with billing, technical and account as the options. Back comes choice: "billing", a probability for each option, and a confidence value. Nothing to parse, and no branch for malformed output, because the answer can only be an option you supplied.
Jev is TypeSafe's flagship model and the first of what the company calls System One models. It reads natural language like an LLM, accepts text only, and never produces prose or code. LLMs produce words for people; Jev produces typed decisions for software.
Who Built Jev
TypeSafe AI was founded in 2024, spent two years in stealth, and raised a $40 million seed round led by DCVC at a $200 million valuation.
CEO Diogo Almeida is a co-author of OpenAI's InstructGPT paper, the work that put RLHF into ChatGPT, and was at Google Brain before that. CTO Erik Gafni is a repeat founder in production AI systems, and COO Sasha Sheng is a former research engineer at Meta/FAIR.
So a co-author of the paper that made RLHF famous now runs a company whose manifesto argues RLHF pointed the field at the wrong target: optimising for human preference produces AI that needs a human in the loop instead of running in the background. That argument is why the product looks the way it does.
Where the Name Comes From
System One comes from Daniel Kahneman's Thinking, Fast and Slow, where System 1 is fast and intuitive and System 2 is slow and deliberate. The last two years of model development have been a race toward System 2, with reasoning traces and longer chains. Jev is aimed at the other one: the judgment a knowledgeable person makes in a few seconds without deliberating.
Jev itself is short for William Stanley Jevons, the economist behind the Jevons paradox. More efficient steam engines burned more coal, not less. TypeSafe names him in its launch post, so the bet is stated out loud: make machine judgment cheap enough and organisations will not spend less on it, they will put it in a thousand more places.
How Jev Differs From an LLM
Jev is not a smaller version of an LLM. It is trained on a different objective and returns a different kind of output.
| LLM | Jev | |
| Returns | Free text you parse | A typed value your code branches on |
| Trained with | RLHF (human preference) | RLCD (Reinforcement Learning for Calibrated Decisions) |
| Uncertainty | Rarely stated, often overconfident | Probability across every option, plus a confidence value |
| Wrong answers look like | Plausible prose | A wrong option from your list, never an invented one |
| Input | Text, images, audio | Text only |
| Response time | Seconds | 70 to 500 ms |
The word doing the work is calibrated. TypeSafe trains the probabilities against outcomes, so answers reported at 0.8 should be right about 80% of the time. That holds across groups of predictions, not for any single answer.
The marketing says "zero hallucinations", which is narrower than it sounds. Jev cannot return a value outside the options you defined, so it cannot invent a fact and write it into a sentence.
The Three Question Types
Jev exposes three primitives.
| Type | The question | What comes back |
| Choice | Pick one option from a defined set | The selected option, a probability for every option, confidence |
| Score | Rate the state against levels you describe | A position along your levels, which can land between two, plus probabilities and confidence |
| Noul | Is this statement true? | A single number from 0 to 1 |
A Choice takes up to 255 options, and TypeSafe's advice is to send the whole list, since each option costs only a few tokens. A Score's levels are yours to define, so "0 = calm, 1 = frustrated, 2 = very frustrated" can come back as 1.4. A Noul carries no confidence value. All three mix in one call, evaluated in parallel against the same state.
Confidence is what turns this from a classifier into an architecture: a single number from 0 to 1 derived from how concentrated the probability is. The standard pattern splits it three ways, acting automatically above a high threshold, asking for confirmation in the middle, routing to a person at the bottom, with the threshold scaling to the stakes.
The design rule underneath is one question, one judgment. Instead of rating a startup pitch, ask separately about market size, feasibility and differentiation, then weight them in code. Changing a coefficient is a code review; changing a prompt is a re-test of everything downstream.
What People Use Jev For
Vercel's launch data and TypeSafe's cookbooks point at the same jobs, and most are agent control flow: choosing the next tool or subagent, and deciding whether a workflow continues, retries, asks the user or stops. The latency saving compounds there, because every turn of the loop pays it.
The rest is grading before code acts on the grade, from urgency and risk to jailbreak screening, plus classification already being done expensively: routing tickets, re-ranking retrieved passages, extraction where the answer space is known.
Every job here has the same shape. Somewhere there is a branch, and a language model is asked to produce a sentence purely so that code can read it and take the branch. Tool selection in agentic AI workflows is the clearest case, but relevance filtering in RAG architecture and the classification step in document processing are the same branch elsewhere. What each needs is a value, not the sentence wrapped around it.
Jev's Strengths and Limits
TypeSafe publishes a jaggedness page for jev-1.13 listing its own failure modes, dated 17 September. This is the vendor's own list, not my guesswork about a week-old model.
Jev is good at common-sense semantic judgment on text: does this express urgency, which category fits, how severe is this complaint. It is also very consistent, so similar inputs return similar numbers, which keeps a confidence threshold steady in production.
It struggles with anything that is a number wearing a sentence. It does not count reliably, it reads dates as text instead of ordered quantities, and indirection costs accuracy. So does a state stuffed with material the question does not need. It is also literal, answering the question you wrote instead of the one you meant. TypeSafe's split: extraction to the model, arithmetic in code.
Two limits belong in a risk register, not a capability list. The first is adversarial input: state is data, and Jev does not treat it as hostile, so injected text can move a verdict. A VentureBeat security review found Jev reaching agent infrastructure faster than anyone had worked out how to audit it. A decision leaves no prose behind, so "0.83" is not an explanation for an auditor, which is the AI risk management problem in a new shape.
The second is that structural invariants do not hold. The same refund question returns 0.22 as a Noul and 0.01 as a Choice, and a question plus its negation sums to 1.19. A threshold tuned on one primitive will not carry to the other.
So the rule is a shape rule, not a domain rule: Jev fits where the answer is one of a set you can write down in advance and code owns everything numeric on either side. Test on Swedish or Norwegian content first.
We close the gaps shadow AI leaves open.
Secure deployments, checked against real compliance requirements.
See our AI and agent security approach →
What It Costs and How Fast It Is
Current model jev-1.13.0, with the aliases jev-latest and jev-preview. The figures below are from TypeSafe's model documentation.
- Price: $0.042 per million input tokens, or $42 per billion. Output tokens are free.
- Latency: 70 to 500 ms.
- Context: 64k tokens per request; 32k for the state plus the longest single question.
- Rate limits: 250,000 tokens per second and 1,200 requests per minute, and TypeSafe warns these change without notice while demand is high.
- Data handling: the same weights serve every account, no per-customer fine-tuning, no training on customer requests, and zero data retention for enterprise.
The headline on TypeSafe's own site is 193.6x faster and 444.6x cheaper, with a 238x lower input price than Claude Fable 5.1. Read those as the company's own figures: the evaluations were built by its model-capabilities team, which TypeSafe says could carry bias, and there is no public benchmark behind them. The company itself calls the published numbers the higher end of real-world gains. Treat the multiple as a ceiling.
How to Get Access to Jev
Jev launched on 15 September behind a waitlist. TypeSafe cleared it on 20 September, and sign-up is open to anyone with $5 in starting credit.
| Route | What it is | When to use it |
| Playground | Browser console console.typesafe.ai. Paste text as the state, add a question, read the answer. |
The first fifteen minutes, no code |
| API | One endpoint, POST /v1/systemone, with a key from the console and official Python and JavaScript SDKs |
Building it into your own service |
| Vercel AI Gateway | Model id typesafe-ai/jev, flagged for zero data retention and no training across all traffic |
You already route models through the gateway |
Start in the playground: paste a support ticket, ask a Noul question such as "does this message express urgency", then add a Choice and a Score to the same call. The documentation carries a long cookbook section. Jev is not on OpenRouter at the time of writing; I checked their model list.
If Your Agents Run on Azure
Jev is impressive. The question that decides anything is whether the branch decisions in your workflows need a frontier model at all, and if not, whether fixing that requires a new vendor.
There is a version that stays inside the platform you already govern. Model Router in Azure AI Foundry picks the most cost-effective model per request within a quality band you set, and honours data zone boundaries. Sweden Central and Norway East support Data Zone Standard.
Your agent identities stay in Entra Agent ID instead of a second set of API keys. It saves less per token, and it keeps a company whose first product is a week old out of your data processing agreements.
I have worked that trade-off through in a separate piece on the cost of LLM decisions in Azure AI Foundry. For now the useful exercise costs nothing: open your Foundry logs and count how many calls in your busiest workflow return text no human ever reads.
Work With Precio Fishbone
Wondering which of your AI workloads actually need a frontier model? Book a free consultation with our AI team, or email me directly at par.johansson@preciofishbone.se.
Frequently Asked Questions
Is Jev an LLM?
No. It reads natural language like one, but it is trained with RLCD instead of RLHF and returns typed values with probabilities. It produces no text.
What is TypeSafe AI?
The San Francisco company that builds Jev, founded in 2024 by Diogo Almeida, Erik Gafni and Sasha Sheng, funded by a $40 million seed round led by DCVC.
What does “System One model” mean?
TypeSafe’s name for models built to make fast, structured decisions software consumes directly, after Kahneman’s System 1 thinking. Jev is the first.
What is RLCD?
Reinforcement Learning for Calibrated Decisions, the algorithm TypeSafe trained Jev with. It optimises probabilities against outcomes so they reflect real uncertainty, instead of optimising output for human preference the way RLHF does.
Can Jev replace our LLM?
No. It covers the decision points; generation, summarisation and dialogue still need a language model. Usually both run together, with Jev choosing which path the expensive model is used on.