Skip to main content

Jev: TypeSafe's System One Model That Never Hallucinates

TypeSafe's Jev is a new class of AI model, a System One Model, that returns typed decisions with calibrated probabilities instead of text, running 40-200x faster than frontier LLMs.
Sep 16, 2026  · 10 min read

Explore with AI

ChatGPTClaudePerplexity

Most AI announcements in 2026 have been a race to the top on chat and reasoning, as seen with OpenAI's GPT-6 Astra, Anthropic's Fable 5.1.

TypeSafe has a new approach. On September 15, 2026, the company announced a model that doesn't generate text at all.

The model is called Jev, and it belongs to a new category of AI model TypeSafe is calling System One models.

Instead of producing strings one token at a time, Jev takes unstructured program state as input and returns typed, probabilistic decisions in a single parallel pass.

TypeSafe's headline claims are that Jev runs 40x-200x faster than frontier LLMs on comparable tasks, costs $0.042 per million input tokens with free output, and mathematically cannot hallucinate or produce type errors.

In this article, I'll cover what a System One model actually is, how Jev differs from a standard LLM, what the workflow benchmarks show against other models, and where I think it fits in a real stack.

For deeper coverage of the models Jev is measured against, see our comparisons of GPT-5.6 Terra vs Claude Sonnet 5 and Claude Opus 5 vs GPT-5.6 Sol.

TL;DR

  • Jev is TypeSafe's first System One model: it returns typed decisions with calibrated probabilities, not text.
  • It cannot hallucinate or produce type errors, because valid outputs are defined in the schema in advance.
  • On TypeSafe's 4-workflow benchmark, it hits ~68% accuracy, close to mid-tier LLMs like GPT-5.6 Terra, but 40-400x cheaper and 20-200x faster.
  • It's the wrong tool for chat, code generation, or anything needing a written explanation.
  • Jev is for when you need high-volume, repeated decisions over a shared state where the possible answers are known up front.

What Is a System One Model?

A System One model is a frontier AI model that returns typed probabilistic decisions instead of text.

You give it a block of state and a set of typed questions; it evaluates all of them in parallel and returns structured answers with calibrated confidence scores, with no string generation and nothing to parse. TypeSafe coined the category name with Jev, its first public release in September 2026.

What Is Jev?

Jev is a frontier model built to make fast, structured decisions that software can consume directly, without a parsing or validation step.

It's the first public release in TypeSafe's System One class, available in early access as of September 2026 and named after economist William Stanley Jevons.

The name comes from Daniel Kahneman's Thinking, Fast and Slow.

Kahneman's System 1 is fast and intuitive; System 2 is slow and deliberate.

Existing LLMs, with their chain-of-thought and multi-second reasoning traces, sit firmly in System 2 territory.

TypeSafe founder Diogo Almeida, who was a co-inventor of ChatGPT at OpenAI, argues the automation gap comes from everyone building System 2 models when most software decisions want a fast System 1 answer.

Architecturally, Jev is a real departure from a transformer LLM.

It uses a new model architecture with a parallel sampler that generates all outputs in a single query rather than autoregressively, and a training method TypeSafe calls Reinforcement Learning for Calibrated Decisions (RLCD).

Where GPT-5.6 and Opus 5 are trained with RLHF and verifiable rewards to produce text humans prefer, RLCD optimizes for calibrated probabilities on structured decisions.

The result, per TypeSafe's own numbers, is a 0% structured output error rate and end-to-end latency of 70-500ms.

One tidbit on the RLCD training method: TypeSafe positions it directly against RLHF and RLVR. Where RLHF optimizes for chat responses human raters prefer and RLVR for outputs a program can verify, RLCD optimizes for epistemically honest probabilities on decision tasks. That's why calibration is a first-class property of Jev rather than something bolted on via prompting.

Jev vs a Standard LLM at a Glance

Here's the core architectural contrast in one table, since the difference is easy to lose in prose.

Property Frontier LLM (GPT-5.6, Opus 5) Jev (System One Model)
Output Generated strings, need parsing Typed values, schema-guaranteed
Sampling Sequential, one token at a time Parallel, single query
Input price / 1M tokens $0.20-$10 $0.042
Output price ~5x input Free
Latency 3-329s 70-500ms
Hallucination / type errors Possible Impossible by construction
Confidence Overconfident, inconsistent Calibrated per output

Jev Key Features

The features here all follow from one design choice: Jev gives up string generation entirely.

That subtraction is what buys the speed, the price, and the type guarantees.

Typed decisions instead of text

Jev returns type-safe structured values whose possible outputs are defined in your schema before the call.

The API exposes a small set of question types:

  • Choice for categorical classification
  • Score for numeric or rubric scoring,
  • Noul for yes/no probabilities.

Think of it as a frontier-intelligence function call: unstructured state goes in, typed probabilistic decisions come out.

If you're routing a support ticket, you might define a Choice over {billing, technical, sales, spam} and a Score for urgency from 0 to 100, and Jev fills both in one pass. There's no JSON to parse and no risk that the model wanders off and writes a paragraph instead.

The obvious caveat is that this only works when the space of valid answers is bounded and known up front. Jev is useless for open-ended generation, and it doesn't write the schema for you.

Calibrated confidence on every output

Every Jev output ships with a calibrated probability, meaning higher confidence genuinely corresponds to higher accuracy.

This is the feature I think will be most useful in practice.

Standard LLMs are notoriously overconfident even when you explicitly prompt them for a probability.

If a model can classify something correctly 95% of the time but can't tell you which 5% it's unsure about, you can't safely automate around it.

Jev's calibration lets you set a confidence threshold and only auto-act above it, routing the uncertain cases to a human or a slower LLM.

The limitation worth flagging is that Jev gives you a number, not a rationale.

There's no natural-language explanation of why it scored a case the way it did, which matters for debugging and for audits in regulated domains.

No hallucinations and no type errors

Because Jev's outputs are constrained to the schema, it's mathematically impossible for it to produce an invalid value or a type error.

TypeSafe reports a 0% structured output error rate and 0% tool call error rate.

For comparison, on TypeSafe's structured output test, OpenAI's luna and terra sat at 0.58%, Anthropic's Opus 5 at 5.73%, and Claude Haiku 4.5 at 45.5%.

On tool calls, GPT-5.6 Sol was the worst at 17.0%.

A hallucinated tool call is a nuisance in an interactive agent, but a genuine problem when it's buried several layers deep in a dependency chain with latency guarantees.

Parallel sampling for real-time speed

Jev generates its entire output in a single parallel query rather than emitting one token at a time.

This is where the 70-500ms latency comes from.

That speed opens use cases token-by-token LLMs can't touch.

TypeSafe's own demo has Jev playing Doom by reacting to structured game state (provided as text) roughly 10 times a second, at about $7/hour of inference.

The point isn't that Jev plays Doom well, a scripted bot would beat it, but that it can make reactive decisions inside a real-time loop where a 3-30 second LLM call is a non-starter.

Mapping over big data

Jev's per-case cost of around $0.0004 makes it viable to run a decision over every row of a large dataset, something that's cost-prohibitive with a frontier LLM.

TypeSafe pitches this as turning petabytes of raw data into features and insights by map-reducing decisions across it.

A concrete example is scoring every product review in a 50-million-row table for sentiment and policy violation, which would cost roughly $20 in decision calls with Jev at the reported rate, versus thousands with a token-billed LLM.

How Does Jev Perform on the Benchmarks?

The short version here is Jev lands roughly where mid-tier frontier LLMs do on accuracy, while beating everything on cost and latency by one to two orders of magnitude.

All the numbers below come from TypeSafe's own evaluation tables, and no large-scale independent reproduction has surfaced yet, so treat them as vendor-reported.

Decision accuracy on production workflows

TypeSafe built a custom evaluation across 4 workflows (security incident response, agent-trace observability, invoice processing, and customer service), scoring each model against the average predictions of GPT-6 Astra and Anthropic's Fable.

Jev averages 67.8% agreement with the reference answers.

Here's how that stacks up against the frontier LLMs on the same workflows:

The pattern is consistent: Jev trades a few points of accuracy against the very best models for enormous cost and latency savings.

Model Accuracy Cost per case Latency
Jev (TypeSafe) 67.8% $0.0004 0.4s
GPT-5.6 Terra 67.9% $0.0304 10.1s
GPT-5.6 Sol 74.1% $0.0836 23.3s
Claude Opus 5 73.1% $0.1761 37.8s

Jev is effectively tied with Terra on accuracy while costing about 1/76th as much per case and running 25x faster.

The top-accuracy models, Sol at 74.1% and Opus 5 at 73.1%, keep a real 5-6 point edge, so if peak accuracy is what you need on a low-volume task, the LLM still wins.

Structured output and tool call reliability

On the reliability charts, Jev sits at 0% error on both structured output and tool calls, which is the whole point of the schema-constrained design.

The frontier LLMs all carry some non-zero failure rate here.

Two numbers stand out. Claude Haiku 4.5 posts a 45.5% structured output error rate, and GPT-5.6 Sol posts a 17.0% tool call error rate.

Those aren't obscure edge cases; they're the kind of failures that break an unattended pipeline the moment it runs at volume.

Interpretability and audit limitations

Jev returns probabilities but no natural-language rationale, which reviewers flag as a real constraint for debugging and for audits in regulated domains.

If a compliance team needs to know why a loan application was scored the way it was, a bare confidence number won't satisfy them.

The practical workaround is to reserve Jev for the high-volume routing layer and escalate flagged or low-confidence cases to a model that can produce a written explanation.

That keeps the throughput benefits while preserving an audit trail where it's legally required.

Where the numbers need a caveat

TypeSafe is refreshingly upfront about the biases in its own evals.

The workflows were written by its own model capabilities team, so some bias could exist, and the reference answers come from OpenAI and Anthropic models, which likely undersells Jev's relative performance and that of DeepSeek's models.

The LLMs in these tests run through TypeSafe's open-source System One adapter, which forces them to emit structured decisions compatible with the API.

TypeSafe says this is the most accurate way to get decisions out of an LLM, though it's slower and pricier than letting the model answer without probabilities.

Until an independent suite reproduces this on a neutral harness, I'd read the accuracy parity as promising rather than settled.

Jev vs Frontier LLMs: When to Use Which

Jev isn't competing with GPT-5.6 or Opus 5 for the same jobs, so the useful question is which class of model to reach for.

The split comes down to whether your task needs a bounded decision or an open-ended answer.

  • Reach for a System One model like Jev when the decision is repeated, high-volume, and the possible answers are known in advance.
  • Reach for a frontier LLM when you need generated text, code, a written rationale, or one-off complex reasoning.
Use case Reach for Why
Classifying or routing millions of tickets Jev Bounded outputs, cost and throughput dominate
Scoring or guardrailing LLM outputs at scale Jev Fast yes/no probabilities, no hallucination risk
Real-time decisions inside an app loop Jev 70-500ms latency vs 3-30s for an LLM
Writing code, emails, or summaries Frontier LLM Jev generates no text at all
One-off multi-step reasoning with explanation Frontier LLM Needs a rationale and open-ended output

In practice, the two compose well: use Jev as the fast decision layer that classifies, scores, and routes, and hand the small slice of hard or open-ended cases to a model like Terra or Opus 5. Jev's calibration is what makes that handoff clean, since you can route on a confidence threshold.

Jev Pricing and Availability

Jev's pricing is where the pitch gets aggressive.

Input tokens cost $0.042 per million ($42 per billion), and output tokens are unmetered, described by TypeSafe as too cheap to meter because the model returns structured decisions rather than long text.

For scale, that input rate is roughly 1/48th of GPT-5.6 Terra's $2.00 per million input tokens, and Terra also bills $12.00 per million output tokens on top.

At the workflow level, TypeSafe's internal evals put Jev at about $0.0004 per case versus $0.0304 for Terra and $0.0836 for Sol.

TypeSafe is candid that it can't prove the pricing isn't subsidized, and says the long term will have to demonstrate sustainability, though it expects prices to fall rather than rise.

Jev is in early access as of September 15, 2026, gated behind a waitlist with developers pulled off it over time. I didn't see any explicit free-credit or trial program described in the launch materials.

How to Get Access to Jev?

Jev is a proprietary, hosted model reachable through TypeSafe's HTTP API. However, to access, you'll need to join the waitlist and check the community on the TypeSafe AI Blog.

The endpoint is POST https://api.typesafe.ai/v1/systemone, and the early-access model route is referenced as jev-latest.

TypeSafe provides official SDKs for Python and JavaScript alongside the raw HTTP API.

You define your question types (Choice, Score, Noul) in the schema and pass your program state as input; the response comes back as typed values with calibrated probabilities.

Here's the minimal shape of a request against the serverless route:

import requests

response = requests.post(
    "https://api.typesafe.ai/v1/systemone",
    headers={"Authorization": "Bearer YOUR_KEY"},
    json={
        "model": "jev-latest",
        "state": "Customer emailed twice this week about a failed refund...",
        "questions": {
            "category": {"type": "choice", "options": ["billing", "technical", "sales"]},
            "urgency": {"type": "score", "min": 0, "max": 100},
        },
    },
)
print(response.json())

For the full schema reference and SDK setup, TypeSafe's own docs are the source of truth. 

Final Thoughts

TypeSafe is making a strategic bet that a lot of what people currently ask LLMs to do is really structured decision-making dressed up as chat.

If that's right, Jev's 40-400x cost advantage and 0% type-error guarantee reset the economics of high-volume automation in a way GPT-5.6 and Opus 5 can't match on price.

My honest read is that Jev looks genuinely useful as a fast decision and guardrail layer, and the calibration story is the part I'd actually build around.

The open questions are whether an independent benchmark confirms the accuracy parity and whether the pricing holds once the subsidy runs out.

If you want to understand the decision problems Jev is built for, our AI Fundamentals skill track covers the classification and calibration concepts underneath it.

FAQs

What is a System One model?

A System One model is a class of AI, introduced by TypeSafe, that makes fast, structured decisions instead of generating text. The name references Daniel Kahneman's fast, intuitive System 1 thinking. It takes unstructured program state as input and returns typed values with calibrated probabilities, so software can use the output directly without parsing.

How does Jev compare to GPT-5.6 and Claude Opus 5?

On TypeSafe's 4-workflow benchmark, Jev scores 67.8% accuracy, roughly tied with GPT-5.6 Terra (67.9%) and a few points below GPT-5.6 Sol (74.1%) and Opus 5 (73.1%). Jev costs about $0.0004 per case versus $0.0304-$0.1761 for those LLMs, and runs in 0.4s versus 10-38s. It trades peak accuracy for large cost and latency savings.

How much does Jev cost?

Jev charges $0.042 per million input tokens (about $42 per billion), and output tokens are unmetered and free. That input rate is roughly 1/48th of GPT-5.6 Terra's $2.00 per million. At the workflow level, TypeSafe reports about $0.0004 per decision case.

Can Jev hallucinate or write text?

No on both counts. Jev returns only values defined in your schema (Choice, Score, or Noul question types), so producing an invalid value or a hallucinated answer is mathematically impossible. TypeSafe reports a 0% structured output error rate. Jev generates no free-form text, code, or written rationales at all.

Where can I access Jev?

Jev is in early access as of mid-September 2026, behind a waitlist. It's reachable through TypeSafe's HTTP API at POST https://api.typesafe.ai/v1/systemone using the model route jev-latest, with official Python and JavaScript SDKs. There was no explicit free-credit program described in the launch materials.


Matt Crabtree's photo
Author
Matt Crabtree
LinkedIn

A senior editor in the AI and edtech space. Committed to exploring data and AI trends.  

Topics
Artificial Intelligence
Large Language Models

Top DataCamp Courses

Course

AI-Assisted Coding for Developers

1 hr 30 min
9.8K
Boost your coding with AI—guide your coding assistant to write, test, and document code effectively.
See DetailsRight Arrow
Start Course
See MoreRight Arrow
Related

blog

DeepSeek's Janus Pro: Features, DALL-E 3 Comparison & More

Learn about DeepSeek's new multimodal AI model, Janus-Pro, how to access it, and how it compares to OpenAI's DALL-E 3.
Alex Olteanu's photo

Alex Olteanu

8 min

blog

I Tested DeepSeek R1 Lite Preview to See if It's Better Than O1

I tested the capabilities of the new DeepSeek-R1-Lite-Preview (DeepThink) model through a series of math, coding, and logic tasks.
Dr Ana Rojo-Echeburúa's photo

Dr Ana Rojo-Echeburúa

8 min

blog

Interaction Models: What TML-Interaction-Small Gets Right

Mira Murati's Thinking Machines Lab built a model that listens and talks at the same time. We break down the features and benchmark it against GPT-Realtime-2.
Tom Farnschläder's photo

Tom Farnschläder

10 min

blog

Gemini Omni: One Model for Text, Image, Audio, and Video

A first look at Google DeepMind's any-to-any model — what it does, what's new about it, and how to access it.
Josef Waples's photo

Josef Waples

7 min

podcast

Don't Build on Jell-O: How to Make Agentic AI Reliable with Dan Klein, CTO at Scaled Cognition

Richie and Dan explore why AI reliability has lagged behind capability, how hallucinations hide in plain sight, the limits of humans-in-the-loop and LLM-as-judge, building reliability into model architecture, agentic systems and verifiable actions, and much more.
Richie Cotton's photo

Richie Cotton

51 min

Tutorial

Imagine with Claude: A Guide With Practical Examples

Learn how Anthropic's Imagine with Claude introduces a new paradigm for AI-assisted software development, generating functionality on the fly.
François Aubry's photo

François Aubry

8 min

See MoreSee More