Jev is a new AI decision model from TypeSafe AI that does not generate prose. It converts unstructured information into typed answers and probabilities that software can use directly. Here is how it works, where it may help, and why its bold performance claims still require broader testing.
Jev does not chat, explain, or generate code. It turns unstructured information into constrained decisions that software can use directly. That narrow design may make it useful inside AI-agent workflows-but the strongest performance claims still need broader independent testing.
Most frontier AI products are designed to generate language. They answer questions, draft emails, write code, and converse with users. Jev is designed for a different job.
Released by San Francisco-based TypeSafe AI on September 15, 2026, Jev does not produce free-form prose. A developer supplies some state-such as a support message, application record, document excerpt, or JSON object-and defines the decisions the model is allowed to return. Jev responds with typed answers, probabilities, and, for some answer types, a confidence measure.
TypeSafe calls Jev its first System One model, borrowing the term from the fast, intuitive mode of thought popularized by Daniel Kahneman. The label is TypeSafe’s own product category, not an established industry standard. The central idea, however, is easy to understand: use a specialized model for frequent, bounded judgments instead of asking a general-purpose language model to generate and then reformat an answer.
That makes Jev less like a chatbot and more like a probabilistic decision function: unstructured information goes in; a predefined answer comes out.
Who Built Jev?
TypeSafe AI was founded in 2024 by Diogo Almeida, Erik Gafni, and Sasha Sheng. Almeida, the company’s chief executive, spent about four years at OpenAI and was a co-author of the 2022 InstructGPT paper, which helped establish the human-feedback training methods later associated with ChatGPT. He previously worked at Google Brain. Gafni is the company’s chief technology officer, while Sheng, a former Meta/FAIR research engineer, is chief operating officer.
The company emerged from stealth alongside Jev’s launch with a $40 million seed round led by DCVC. Forbes reported that the financing valued the startup at about $200 million, citing a person familiar with the deal.
Jev’s name refers to Jevons paradox, the economic observation that making a resource more efficient can increase its total use. TypeSafe’s wager is that much cheaper machine intelligence will be called more often and embedded more deeply inside software.
How Jev Works
A Jev request contains two main elements. The first is the state: the information the model must evaluate. TypeSafe’s API accepts a string, a JSON object, or an array of text values. The current model is text-only, although structured text can represent records, application state, logs, messages, and other data.
The second is one or more typed questions. Jev currently supports three primitives:
- Choice: Selects one option from a developer-defined set. The API supports as many as 255 options and returns the winning option, the probability assigned to every option, and a derived confidence value.
- Score: Rates the state against an ordered scale containing two to ten levels. It returns a probability-weighted score, the probability distribution across the levels, and a confidence value.
- Noul: Evaluates a yes-or-no question and returns the probability that the answer is yes, from 0 to 1. Unlike Choice and Score, Noul does not return a separate confidence field.
Multiple questions can be evaluated against the same state in one request. TypeSafe says the state is ingested once and the questions are evaluated in parallel. Code can then use the answers to route a case, apply a threshold, request more information, or send an uncertain decision for human review.
The practical appeal is not merely that the response is structured. Developers define the possible answer space before inference, so Jev cannot add an unexpected paragraph, invent a new label, or return malformed prose where a typed value is required.
The Training Idea: Calibrated Decisions
TypeSafe says Jev uses a training method it calls Reinforcement Learning for Calibrated Decisions (RLCD). Instead of optimising the model to generate text preferred by human raters, RLCD is intended to make its probabilities correspond more closely to observed outcomes.
In a well-calibrated system, outcomes assigned an 80% probability should be correct roughly 80% of the time across a sufficiently large set of comparable predictions. Calibration does not guarantee that any individual answer is correct. It makes uncertainty measurable enough for software to use.
This distinction matters in automation. A system can permit a low-risk action above one threshold, demand confirmation for a higher-risk action, and escalate ambiguous cases. The model supplies the judgment; conventional code still owns the control flow and business rules.
The company also says Jev uses a new architecture and a parallel sampler rather than ordinary token-by-token text generation. The company has not publicly disclosed enough architectural detail for outsiders to fully evaluate those design claims.
What “No Hallucinations” Does and Does Not Mean
TypeSafe markets Jev as unable to hallucinate because it cannot generate an answer outside the schema supplied by the developer. That claim needs careful interpretation.
Jev can be schema-safe: if the allowed departments are Billing, Technical, and Sales, it cannot invent a fourth department or append an unsupported explanation. In that narrow sense, free-form output hallucination is eliminated by construction.
But the model can still choose the wrong department. A validly typed answer is not automatically a factually correct answer, and a probability is not proof. TypeSafe’s own documentation acknowledges that the current Jev 1.13 model can struggle with literal wording, arithmetic, counting, date comparisons, multi-step indirection, long irrelevant context, and adversarial text.
The safer formulation is therefore: Jev eliminates out-of-schema generation, not model error. Teams must still test accuracy, calibration, thresholds, and failure modes on their own data.
Speed and Cost: Strong Claims, Limited Independent Evidence
Jev’s price is unusually low. TypeSafe currently lists $0.042 per million input tokens, or $42 per billion, with output tokens free. Its documentation lists a 64,000-token total request budget, subject to an additional 32,000-token limit covering the state plus the longest individual question.
TypeSafe’s launch materials report peak workflow results of 193.6 times faster and 444.6 times cheaper than the comparison language models. The company also explicitly says these figures are likely to represent the higher end of real-world gains. The workflows were created by its own model-capabilities team, and its reference answers came from other frontier models rather than independent ground truth.
Those numbers should therefore be presented as company benchmark results, not universal performance facts.
Early third-party testing is encouraging but still narrow. In a LangChain experiment involving five fixed weather-agent traces repeated 100 times each, Jev matched the human pass-or-fail label on all 500 decisions and showed lower score variance than the tested language-model judges. LangChain cautioned that the test was small and could not establish whether the result would generalise to other agents or production workloads.
The sensible conclusion is not that Jev is already proven superior across classification tasks. It is that its architecture and pricing make frequent, bounded evaluation economically interesting enough to test.
Why Developers Are Paying Attention
AI agents make many small decisions while completing a task:
- Which tool should run next?
- Is this request safe to execute?
- Which team should receive this ticket?
- Does the evidence support the claim?
- Is the task complete?
- Is confidence high enough to proceed automatically?
Many systems currently ask a general-purpose language model to make each judgment, often forcing it to generate text or JSON that must be parsed and validated. That can add latency, cost, and another failure point to the workflow.
Jev is aimed directly at these inner-loop decisions. A generative or reasoning model can still plan, explain, and write, while Jev handles repeated classifications, scores, gates, or routing decisions around it. In this design, Jev is a complement to language models rather than a replacement for them.
The model is available through TypeSafe’s API and has appeared quickly across developer platforms, including Vercel AI Gateway, Netlify AI Gateway, and Cloudflare’s model catalogue. This distribution helps explain the early attention, although adoption announcements should not be confused with evidence of sustained production use.
Practical Use Cases
The most credible near-term applications are tasks with a bounded answer space and clear escalation rules:
- Routing support tickets, leads, or contact-form submissions
- Assessing the urgency, severity, or risk of a message
- Checking proposed tool calls before an agent executes them
- Evaluating whether retrieved evidence supports a claim
- Classifying documents, comments, or agent traces at high volume
- Selecting an appropriate model, workflow, or specialist agent
- Gating automated actions according to probability and confidence thresholds
- Running frequent, low-cost quality checks inside agent loops
These use cases still require domain testing. A wrong marketing-content label is inconvenient; a wrong medical, financial, security, or industrial-control decision can be consequential. The threshold for human review should rise with the stakes.
Limitations Developers Should Know
Jev is intentionally not a general-purpose language model. It cannot write an explanation, compose an email, generate code, or sustain a conversation. If a task requires an open-ended answer, a generative model is still needed.
The current Jev model is text-only. TypeSafe says English is its strongest language and advises testing carefully in other languages. Its own model notes recommend keeping mathematical operations, counting, date calculations, and deterministic checks in conventional code.
The model can also be affected by irrelevant context and adversarial wording. TypeSafe advises developers to filter state, write precise criteria, test boundary cases, and avoid assuming that differently worded questions will obey neat mathematical relationships.
Finally, Jev’s probabilities should not be treated as ready-made permission to automate. A confidence threshold must be validated against representative data, monitored after deployment, and aligned with the cost of a wrong decision.
What Jev Could Mean for AI Architecture
Jev matters because it challenges an increasingly common design assumption: that every intelligent step inside software should be handled by a model that generates language.
Some tasks genuinely need explanation, synthesis, planning, or creative output. Others need a fast judgment from a known set of possibilities. Using the same model for both can be technically convenient, but it may not be economically or operationally efficient.
If Jev’s accuracy and calibration hold up across broader independent evaluations, decision models could become a separate layer in the AI stack. Reasoning models would handle difficult open-ended work. Decision models would perform frequent, constrained judgments. Deterministic code would retain control of rules, permissions, calculations, and execution.
That division of labour is Jev’s most important idea. The model is still new, and the evidence base is small. TypeSafe’s most dramatic benchmark numbers come from TypeSafe, while long-term reliability, production case studies, and domain-specific calibration remain to be demonstrated. Yet the proposition is compelling: an AI model does not always need to speak. Sometimes its most useful output is simply a bounded decision, an honest probability, and a clean handoff to software.
FAQs:
What is the Jev AI model?
Jev is a decision-focused AI model developed by TypeSafe AI. Instead of generating free-form text, it evaluates supplied information and returns constrained answers, probabilities and confidence measurements that software can process.
How is Jev different from a large language model?
Large language models generate text, code and explanations. Jev is designed for bounded decisions such as classification, scoring, routing and yes-or-no evaluation. It complements generative models rather than replacing them.
Can Jev hallucinate?
Jev cannot generate answers outside the options defined by a developer, which prevents out-of-schema hallucinations. However, it can still select an incorrect option or assign an inaccurate probability.
How much does Jev cost?
TypeSafe currently lists Jev at $0.042 per million input tokens, with output tokens free. Pricing may change as the service develops.
What are the main use cases for Jev?
Potential applications include support-ticket routing, tool-call safety checks, document classification, evidence verification, model routing, risk scoring and quality checks inside AI-agent workflows.

