TypeSafe's Jev Delivers Structured AI Decisions Without Generating a Single Word
Vercel adopted the $0.042-per-million model within days, replacing an OpenAI classifier for faster results

Developers at Vercel, one of the companies building infrastructure for AI agents, have replaced an OpenAI classifier in production with a model that generates no text at all — getting results five to eighteen times faster in the process. The model they switched to is Jev, released on September 15, 2026 by TypeSafe AI, and it has become one of the more discussed AI launches of the year among builders precisely because it refuses to do what most AI models are built to do: produce language.
TechCrunch confirmed the Vercel case on September 18, along with a second deployment at Bryo AI, where the model's output costs came in ten to twenty times lower than the Gemini alternative it replaced. TypeSafe's API briefly went down in the days following launch because demand from developers exceeded what the system was prepared to serve. The company has since restored service and is pulling users off a waitlist. That level of early traction — real production deployments, service overload, OpenRouter beta availability — is the reason to write about Jev now rather than at launch: this is no longer just an announcement. It is a live experiment in whether the economics of software intelligence look fundamentally different when you stop generating sentences.
Jev Is Not an LLM — the Absence of Text Generation Is the Whole Point
Diogo Almeida, TypeSafe's founder, co-authored the InstructGPT paper at OpenAI and helped develop reinforcement learning from human feedback — the training technique that transformed GPT-3 into the assistant that became ChatGPT. After leaving OpenAI roughly two years ago, he spent the stealth period trying to solve a specific problem he had watched from the inside: models are superhuman at conversation but the automation they were supposed to enable has not arrived at scale.
His diagnosis, and the organizing principle behind Jev, is that natural language is the wrong output format for software. When a codebase needs to make a decision — route this customer service ticket, score this job application, decide whether this AI agent's tool call looks suspicious — it has to parse text, validate structure, and handle every variation a language model might produce. That parsing layer is where many automation pipelines fail. Jev removes it.
Instead of generating tokens sequentially, Jev takes a block of state — a JSON object, a text string, a log entry, anything the developer wants to pass in — along with a set of typed questions. It then evaluates all of them in a single parallel forward pass and returns typed values: a selection from a predefined list, a number on a defined scale, or a yes/no probability. There is no string to parse. There is no validation step. The schema is defined before the call, and the output either fits it or is mathematically impossible to produce. TypeSafe AI confirms the model is available via its own API and, as of September 16, through Vercel's AI Gateway.
The three output types TypeSafe currently offers are called Choice, Score, and Noul. Choice handles categorical classification, supporting up to 255 options. Score returns a numeric value within bounds the developer specifies. Noul is a binary yes/no with a calibrated probability attached — the name is a TypeSafe coinage. Every answer comes with its own confidence score, derived from the shape of the returned probability distribution. A concentrated distribution implies higher confidence; a flat distribution implies genuine uncertainty.
How the Architecture Produces Millisecond Decisions
The latency advantage Jev claims — 70 to 500 milliseconds end-to-end, compared with 3 to 329 seconds for frontier language models on comparable tasks — comes directly from dropping sequential generation. Every large language model in production today generates output one token at a time. Each token's probability depends on all prior tokens, which forces the process to be strictly sequential. You cannot produce token 47 until token 46 is known. That constraint is why even a short LLM response takes several seconds and why long responses take minutes.
Jev's parallel sampler evaluates all output values in a single query. Because the answer space is pre-defined and constrained to the schema, the model does not need to generate open-ended possibilities. The lack of sequential dependency means the entire response can be computed at once, at significantly lower arithmetic cost. That lower compute cost is also what makes output tokens effectively free: there are so few of them, and they are generated so cheaply, that TypeSafe bills input at $0.042 per million tokens and charges nothing for output.
For comparison, GPT-5.6 Terra costs $2.00 per million input tokens and $12.00 per million output tokens. Claude Fable 5.1's base input price is $10 per million, with output substantially more expensive. On the workflow evaluations TypeSafe has published — covering four task types including customer service routing and invoice processing — Jev came in at approximately $0.0004 per case, versus $0.0304 for Terra and $0.1761 for Claude Opus 5. All figures are company-reported from TypeSafe's own internal benchmark.
The architecture Almeida has disclosed publicly is that Jev is transformer-based, though he has been deliberately vague about specifics. Outside observers have speculated the model may be built on top of an open-weight foundation, a question Almeida has declined to answer. The training methodology — which TypeSafe calls Reinforcement Learning for Calibrated Decisions, or RLCD — is described conceptually but not documented in a published paper. The reward function, calibration procedure, and training infrastructure have not been disclosed.
Read more: Verification is the bottleneck holding agentic AI back
RLCD Training: What Distinguishes It from RLHF and RLVR
To understand RLCD, it helps to understand what it is designed against. RLHF — the technique Almeida helped build at OpenAI — trains a model to produce outputs that human raters prefer. The optimization target is human satisfaction with a text response. RLVR, reinforcement learning with verifiable rewards, trains a model to produce outputs that can be programmatically checked for correctness. This works for mathematical proofs, code that either runs or does not, and other problems where ground truth is cheap to compute.
Neither of those frameworks is the right tool for high-volume classification over ambiguous inputs. A customer service router needs to be right most of the time, but more importantly it needs to know when it is not confident. RLHF-trained models, when asked to estimate their own confidence, are systematically overconfident and inconsistent — a widely documented failure mode in production AI deployments. If a classifier is correct 94% of the time but cannot identify the 6% it is likely wrong about, it cannot be safely automated: you have to review every case.
TypeSafe's RLCD optimizes for something different: calibrated probabilities. The goal is not to maximize accuracy in isolation but to produce a model whose confidence score genuinely tracks its accuracy — so that a case rated 90% likely-billing really does route to billing roughly 90% of the time, and a case rated 55% really is a coin toss worth escalating. The practical consequence is a confidence threshold that developers can set based on their own data, automating clear cases and routing uncertain ones to a human reviewer or a heavier model.
Armin Ronacher, the CTO of Earendil, which builds the open-source model harness Pi, described the design to TechCrunch this way: "At the end of the day, it delegates the hallucination problem a little bit to the user. The user has to say, okay, if this only comes back with 50% probability, maybe this is a coin toss, and I disregard it. But if it's 95%, sure, then I can do something with it." That framing is accurate: Jev shifts the reliability question from "is the model right?" to "is the model confident enough to act?" — which is a more tractable design question for production engineers.
The methodology has real limitations. TypeSafe has not published the RLCD algorithm, its reward function, or calibration curves. Anthony Maio, an independent analyst who reviewed the launch materials, wrote that as of September 15 TypeSafe had described what RLCD is meant to do without publishing enough for anyone to evaluate it as an algorithm. The confidence value for Choice and Score outputs is derived from the shape of the probability distribution — TypeSafe has not specified which statistic it uses. Concentrated distributions are not automatically evidence of trustworthiness on out-of-distribution inputs; developers who rely on Jev's confidence scores will need to validate calibration on their own data before deploying it in automated workflows.
Where the Benchmark Numbers Hold Up and Where They Do Not
TypeSafe has published a four-workflow evaluation covering security incident response, agent trace observability, invoice processing, and customer service routing. On accuracy — measured as agreement with the average prediction of GPT-6 Astra and Claude Fable 5.1 — Jev scores 67.8%. GPT-5.6 Terra scores 67.9%, essentially tied. GPT-5.6 Sol reaches 74.1% and Claude Opus 5 reaches 73.1%. These figures are all company-reported from TypeSafe's own evaluation infrastructure.
The framing matters here. TypeSafe explicitly acknowledges that its reference answers are the average of OpenAI and Anthropic flagship models rather than ground-truth labels. Measuring "accuracy" as agreement with those models means Jev is being evaluated on how closely it approximates the consensus of the most capable available systems — not on whether its decisions are independently correct. The workflows were also created by TypeSafe's own model capabilities team, which the company acknowledges introduces potential bias. No independent party has reproduced the accuracy figures on a neutral harness as of today.
On structured output and tool-call reliability, the picture is less ambiguous. TypeSafe reports a 0% structured output error rate for Jev, which is derivable from first principles: if valid outputs are defined in advance and the model is constrained to produce only those outputs, invalid outputs are mathematically impossible. The question is not whether Jev can produce a type error — it cannot — but whether the answer it produces within the valid space is the right one. Those are different failure modes, and only the second is addressed by accuracy benchmarking.
The comparison figures for other models on structured outputs are striking. TypeSafe reports Claude Haiku 4.5 at a 45.5% structured output error rate and GPT-5.6 Sol at a 17.0% tool-call error rate on its own evaluation harness. The Register's Thomas Claburn noted that while Jev's hallucination-free claim is a different thing from what the word usually means — Jev cannot generate fabricated legal citations because it cannot generate text — the type-safety guarantee is meaningfully distinct and more valuable than it first appears in the context of deep dependency chains.
Real-World Use Cases and What They Actually Reveal
The deployment patterns that have emerged in the four days since launch fall into categories TypeSafe anticipated and at least one it did not.
Model routing is the most discussed. Because frontier LLM calls are expensive and slow, using a frontier model to decide which model to use is paradoxical. Jev's $0.042 input rate and sub-second latency make real-time routing economically sensible. Ronacher described this to TechCrunch as a key expected use case. The Vercel case — replacing an OpenAI classifier for reviewing agentic commands for safety — is a live example of the broader pattern: using Jev as a fast gate over other AI components, rather than as a primary intelligence layer.
Agent monitoring is the second major use case Almeida is promoting. As AI agents running long multi-step tasks accumulate tool calls, log entries, and intermediate outputs, the context window expands and inference costs compound. Developers have reported using Jev to score the relevance of each tool call in an agent trace, discarding low-relevance entries and compressing the agent's working context from millions of tokens to tens of thousands in a single fast Jev call. That capability addresses a real pain point in production agentic systems without requiring another frontier LLM call.
The Doom demo, which TypeSafe used to illustrate real-time capabilities, runs Jev at roughly ten decisions per second against a structured game-state representation — at approximately $7 per hour of inference. The demo works on text encoding of game state, not raw pixel inputs; Jev currently does not accept images or video directly. That constraint is significant for the robotics and computer vision applications users initially speculated about. TypeSafe has hinted at future multimodal input capabilities but has not announced a timeline.
What Jev Cannot Do, and What That Costs You
Jev will not generate a paragraph of analysis, write a function, summarize a document, or explain its reasoning. That is not a limitation to be patched — it is the architectural commitment the model is built around. The developer who needs to know why a loan application was flagged cannot get that from Jev. The compliance team that needs an audit trail of reasoning for a regulatory examination has no rationale to present. For any task that requires open-ended generation, a written explanation, or the ability to handle an answer space that is not defined in advance, Jev is the wrong tool.
The absence of a natural-language rationale also creates a debugging gap. When a classifier misroutes a case at high confidence, the developer cannot interrogate Jev's reasoning — because there is no reasoning surface to inspect. The mitigation pattern most analysts are recommending is to use Jev for the high-volume, well-defined decision layer and escalate low-confidence or flagged cases to an LLM that can provide an explanation. That layered architecture preserves throughput benefits while giving engineers and compliance teams a rationale trail where they need one.
The architecture-disclosure gap creates a separate problem for enterprise buyers. When a regulated organization integrates a third-party AI model into a credit decision, an insurance underwriting pipeline, or a medical triage workflow, regulators in most jurisdictions expect the organization to understand how the model reaches its outputs. TypeSafe has not published the RLCD reward function, the model architecture details, or any third-party audit of the calibration claims. Until the company releases more technical documentation — a published paper, calibration curves, or an independent audit — enterprise procurement teams in regulated industries face the same opacity problem they do with any black-box AI vendor, compounded by the novelty of the model class.
On pricing sustainability, TypeSafe itself has been candid: it cannot prove the pricing is not subsidized. The company expects prices to fall rather than rise over time — citing Jevons paradox, the basis for the model's name — but the long-term economics of the service depend on infrastructure cost trajectories that have not yet been established in production at scale. Developers building systems with Jev as a dependency should treat the current pricing as a reasonable estimate subject to change rather than a committed long-term rate.
The Jevons Bet and What It Means for Agentic Infrastructure
The name Jev is a deliberate reference to 19th-century English economist William Stanley Jevons, whose paradox observed that improvements in the efficiency of coal-powered steam engines increased total coal consumption rather than reducing it. Each efficiency gain made coal useful for applications previously out of reach, expanding the demand base faster than the efficiency saving could reduce it.
Almeida's thesis is that AI token consumption will follow the same pattern. Every order-of-magnitude drop in the cost of an AI decision unlocks orders of magnitude more decisions that become worth making — not just routing major customer service tickets but scoring every line item in an invoice, every commit in a code review pipeline, every message in a chat thread. At current LLM pricing, most of those micro-decisions are not economically viable. At Jev's pricing, many of them are.
"We think that there's just going to be smart software all over the place in a way that's emergent and distributed," Almeida told TechCrunch, contrasting this vision with the "mega apps" model that currently dominates AI deployment thinking.
Ronacher cautioned that competitors would follow once Jev's utility became apparent — noting that the insight "should have seen this earlier" and that cheap, subsidized LLMs had removed the pressure to be architecturally creative. The model category Jev represents is now defined. Whether TypeSafe can maintain its first-mover advantage through RLCD calibration, pricing, and reliability as larger labs build equivalent models is the business question that the next year will answer. The technical question — whether calibrated structured decisions can become a reliable layer in production AI pipelines — is now being answered in real deployments. The early data is running in TypeSafe's favor, but independent benchmark reproduction and sustained pricing remain the two open variables that will determine whether Jev reshapes how agentic software is built.