TypeSafe AI's Jev and "System One Models": What Actually Shipped

Built for Speed: ~10ms Latency, Even Under Load
Blazingly fast way to build, track and deploy your models!
- Handles 350+ RPS on just 1 vCPU â no tuning needed
- Production-ready with full enterprise support
What TypeSafe AI released
TypeSafe AI is an AI lab founded by Diogo Almeida â previously at OpenAI, where he worked on the instruction-following research that became ChatGPT â along with Erik Gafni and Sasha Sheng. After roughly two years in stealth, the company published its launch post on September 15, 2026, alongside a $40M seed round led by DCVC. DataCamp and several trade outlets covered it over the following days.
The framing in the launch post is a question rather than a benchmark: models have been superhuman at chat for years, so where is all the automation? TypeSafe's answer is that the bottleneck was never raw intelligence â it's that a model which replies in prose is an awkward component to build software on top of. Its company manifesto puts it more bluntly: today's AI was trained on the assumption that a human sits on the other side of it.
Jev is the first model built on that premise. The name comes from William Stanley Jevons, whose paradox holds that falling cost drives rising consumption; System One is a nod to Daniel Kahneman's fast, intuitive System 1 thinking, as distinct from slow, deliberate System 2 reasoning.
What a "System One Model" actually is
Among the types of AI models you'd reach for in production, this one is defined by what it gives up. A chat model returns a string, and a string can be anything â an answer, a refusal, a paragraph of reasoning, or something malformed that your parser chokes on. Jev doesn't return strings at all.
Instead, you declare the shape of the answer up front: which fields you want, and which values each field is allowed to take. The model returns those fields filled in, each with a probability attached. TypeSafe describes the result as a frontier-intelligence function call â unstructured state in, typed probabilistic decisions out. In practice it behaves less like a chatbot and more like an ai decision engine you can call from a line of code.
Three properties follow from that design:
- Parallel sampling. Every field is produced in one pass rather than one token at a time, which is where the speed claim comes from.
- Schema conformance by construction. Because possible outputs are enumerated in advance, a type error isn't unlikely â it's unavailable. TypeSafe notes this would be trivially falsifiable with a single counterexample.
- Calibrated confidence on every answer. Each output carries a probability, and the training objective â which TypeSafe calls Reinforcement Learning for Calibrated Decisions, or RLCD â optimises for those probabilities being honest rather than for human preference (RLHF) or programmatically verifiable rewards (RLVR).

A chat LLM builds its answer token by token; a System One model fills every field of a fixed schema in one pass, each with a confidence score.
That third property is the one most likely to be underrated. A model that's right 95% of the time but can't tell you which calls are in the other 5% can't be automated around. One that reports honest uncertainty can be â you branch on the confidence score and route the low-confidence cases to a human or a bigger model.
How it differs from a chat LLM
One practical limit worth knowing: Jev supports a cardinality of up to 255 options per choice. Above that, TypeSafe uses a two-stage approach â score candidates independently, then make an explicit choice â which it acknowledges is slower.
What's verifiable and what's a vendor claim
This is the part worth slowing down on, because the launch numbers are unusually large and the evidence behind them is unusually self-contained. To TypeSafe's credit, its post includes its own "nuance" notes under each result, which is where most of the following comes from.
Independently checkable today:
- Pricing. Published openly. What can't be verified is whether it's sustainable rather than subsidised â TypeSafe says as much, and expects prices to fall rather than rise.
- Schema conformance. A guarantee about output shape is falsifiable by a single bad response, and TypeSafe's 0% type-error figure is derived from the construction rather than measured.
- Per-call latency. Anyone with early access can time it, with the caveat that published runs came from the team's own laptops on the US West Coast.
- The launch itself. Funding, founder background, and availability are all corroborated by independent press coverage.
âSelf-reported and not yet independently reproduced:
- The 193.6x faster / 444.6x cheaper figures. These come from TypeSafe's own workflow evals â a new evaluation format the company designed, in which every model runs the same compute graph and is scored against reference probabilities drawn from the average of GPT-6 Astra and Fable 5.1. TypeSafe flags three limitations itself: the workflows were built by its own model-capabilities team, the choice of reference models biases results toward OpenAI and Anthropic, and competing LLMs run through TypeSafe's own System One adapter.
- Intelligence parity with frontier models. The claim is parity on System One-shaped tasks specifically, benchmarked mainly against GPT-5.6 Terra. It is not a claim about general capability, and shouldn't be read as one.
- The hallucination comparison. The LLM figures in that chart come from OpenRouter traffic, which TypeSafe notes is likely biased because harder queries get routed to better models.
Still unknown: performance on public benchmarks, behaviour on tasks that aren't cleanly decision-shaped, accuracy on domain-specific work in someone else's hands, and anything at all about production reliability at scale. Early access only opened this week.
There's also a wording issue worth being precise about, because it will get flattened in summaries. TypeSafe says Jev can't hallucinate, and in the narrow sense that's fair: a model that never emits free text can't invent a citation or a tool name. But llm hallucination and correctness aren't the same problem. A model constrained to three allowed categories can still confidently pick the wrong one â what's been eliminated is the malformed answer, not the mistaken judgment. Calibration is TypeSafe's answer to that, and calibration is exactly the claim that needs independent testing. Teams already using structured outputs with JSON schema will recognise the distinction: constraining the shape of an answer has never guaranteed the substance of it.
Where a decision model fits in a production stack
Set the specific launch aside for a moment, because the shape of it is more interesting than the numbers. What TypeSafe is arguing â and what a growing number of teams are arriving at independently â is that one general-purpose model answering every call is a prototyping pattern, not a production one.

A production stack ends up holding several model types at once, with the routing layer deciding which one serves a given call.Â
The decisions inside a running system are mostly small and repetitive: is this ticket urgent, which queue does it belong in, does this response violate policy, which of these fields is the invoice number. Sending each of those to a frontier chat model works, and teams do it, but it means paying generation prices and generation latency for something closer to a lookup. That's the same calculus behind choosing when to specialise a small model instead of prompting a large one, and it's why verification-style work â scoring, judging, jailbreak detection, agent guardrails â is the use case TypeSafe leads with. Guardrails have to run on every call, which makes cost and latency the binding constraint rather than raw capability.
The consequence for anyone running AI in production is an ai orchestration problem rather than a model-selection one. If the right answer is a chat LLM for some calls, a fast decision model for others, and a fine-tuned small model for a third set, then the thing that has to be stable is the layer in front of them â one call path, consistent auth and logging, and the freedom to change which model serves a given task without rewriting the application. That's the premise behind auto-routing on the TrueFoundry AI Gateway, and it's the reason a launch like this one is more interesting as an architectural signal than as a benchmark.
For now, Jev is a closed hosted API in early access, so there's nothing to deploy and no integration to evaluate. That may change. The pattern it represents almost certainly will not.
Conclusion
TypeSafe AI's Jev is a genuinely different bet: that the useful next step isn't a smarter chat model but a dependable one that software can call like any other function. The design is coherent, the founder's track record is real, and the price and latency targets are aggressive enough to change what's worth automating. The benchmark multiples, though, are self-graded on a format the company invented, and the strongest claim in the post â calibration â is the one no outside party has tested yet. Both things can be true.
What the launch does confirm is a direction: production stacks are heading toward a mix of model types chosen per task, not a single model chosen per company. If that's the shape of your system, the layer worth getting right is the one in front of the models.
See how the TrueFoundry AI Gateway routes across model types â
TrueFoundry AI Gateway delivers ~3â4 ms latency, handles 350+ RPS on 1 vCPU, scales horizontally with ease, and is production-ready, while LiteLLM suffers from high latency, struggles beyond moderate RPS, lacks built-in scaling, and is best for light or prototype workloads.


Recent Blogs
Frequently asked questions
What is TypeSafe AI's Jev?
Jev is the first model in a class TypeSafe AI calls System One Models, launched in early access on September 15, 2026. Rather than generating text, it takes unstructured input plus a schema you define in advance and returns typed values with calibrated confidence scores. It's aimed at decisions made inside software â classification, routing, scoring, extraction â rather than at chat.
What are System One Models?
They're models built to make fast, structured decisions that software consumes directly, named after Daniel Kahneman's fast, intuitive System 1 thinking. The defining trade is giving up free-form text generation in exchange for parallel sampling, guaranteed schema conformance, and a probability attached to every answer.
Can Jev really not hallucinate?
It can't produce an answer outside the schema you defined, which rules out invented fields, malformed output, and fabricated tool names. It can still select the wrong value from the allowed set â that's an accuracy question, not a format one, and TypeSafe's response to it is calibrated confidence rather than a claim of infallibility.
Is Jev open source or self-hostable?
No. It's a proprietary model served from TypeSafe's own hosted API, currently behind an early-access waitlist. There are no published weights and no on-prem option today.
â
How many LLMs does TrueFoundry support?
1,000+ LLMs through a single OpenAI-compatible API. Switching models means changing the model name in the request â same URL, same credentials â which is what makes swapping in a new provider a configuration change rather than an integration project.
â
What latency does the TrueFoundry AI Gateway add?
Roughly 3â4 ms of overhead, handling 350+ RPS on a single vCPU. That matters more as model calls get faster: a routing layer that adds hundreds of milliseconds would erase the advantage of a sub-second decision model.
â












.png)
.png)


.webp)


.png)
.png)
.png)
.png)

.png)
.png)
.png)
.png)
.png)







