The Coe Lab
← Back to Blog

System One Models: When AI Stopped Chatting and Started Deciding

September 16, 20266 min read
AITypeSafe AIMachine LearningAutomationSystem One Models

TypeSafe AI's Jev model ditches text generation for structured decisions at 70ms latency. It's 200x faster than frontier LLMs and physically cannot hallucinate. Is this the real path to AI automation?

For years, the AI industry has been obsessed with chat. We measure models by how well they converse, how eloquently they write, and how human-like their responses feel. But TypeSafe AI just asked a question that reframes the entire conversation: if models have been superhuman at chat for years, where is all the automation?

Their answer is Jev — the first System One Model. It doesn't generate text. It makes decisions. And it does so in 70 milliseconds, two orders of magnitude faster than frontier LLMs, with calibrated confidence scores and zero hallucination risk.

What Are System One Models?

The name borrows from Daniel Kahneman's framework in Thinking, Fast and Slow. System One is fast, intuitive, and automatic — the part of your brain that catches a ball without calculating trajectory. System Two is slow, deliberate, and analytical — the part that solves a math problem step by step.

Existing LLMs operate like System Two: they think sequentially, generating one token at a time, each conditioned on the last. This makes them flexible but slow. TypeSafe AI built something different — models optimized for the fast, structured decisions that software actually needs.

The key insight is deceptively simple: most automation tasks don't need text generation. They need decisions. Should this transaction be flagged? Is this user's intent to purchase or browse? Which action should the agent take next? These are classification and routing problems, not writing problems.

Jev: A Frontier-Intelligence Function Call

Jev is TypeSafe AI's first public model, available now in early access. The company describes it as "a frontier-intelligence function call: unstructured state in, typed probabilistic decisions out." That description is worth unpacking because it represents a fundamental departure from how we've been building AI systems.

Unlike an LLM that generates a string you then have to parse, validate, and hope it didn't hallucinate, Jev outputs type-safe structured values directly. The possible outputs and their structure are defined in advance. The model never makes type errors. Every answer comes with calibrated probabilities and confidence scores.

Here's what that looks like in practice:

  • Unstructured data goes in — text, logs, context, any format
  • Typed decisions come out — predefined structure, no parsing needed
  • Confidence scores are attached — epistemically honest probabilities, not invented certainty
  • No hallucination possible — the model can't go off the rails because it doesn't generate free text

The Speed Difference Is Staggering

Frontier LLMs take anywhere from 3 to 329 seconds to respond, depending on the model and query complexity. That's fine when a human is waiting at the other end. But when you're building automation that needs to make thousands of decisions per second, it's a non-starter.

Jev responds in 70 to 500 milliseconds. That's 40 to 200 times faster than frontier models delivering comparable intelligence for System One-shaped queries. And because it uses parallel sampling instead of sequential token generation, output tokens are effectively free — too cheap to meter.

The pricing reflects this architectural difference:

  • Input tokens: $0.042 per million (compared to $0.20–$10 for frontier LLMs)
  • Output tokens: Free. The model generates all outputs in a single parallel query.
  • End-to-end latency: 70ms–500ms (compared to 3–329 seconds for frontier models)

RLCD: A New Training Paradigm

The training method behind Jev is called Reinforcement Learning for Calibrated Decisions (RLCD). This is a meaningful departure from the two dominant training paradigms in AI today.

RLHF (Reinforcement Learning with Human Feedback) optimizes for human preference — generating responses that human raters find helpful, coherent, and safe. It's perfect for chatbots but introduces biases: models become sycophantic, overconfident, and optimized for style over substance.

RLVR (Reinforcement Learning with Verifiable Rewards) optimizes for outputs that can be programmatically verified — correct math, valid code, factual answers. It's better for reasoning tasks but still tied to text generation and sequential sampling.

RLCD optimizes for something different entirely: calibrated decisions. The model learns to produce answers with epistemically honest probabilities on System One tasks. It's not trying to sound smart. It's trying to be right and know when it's not sure.

This matters enormously for production systems. When an AI agent decides whether to execute a $10,000 trade or flag a transaction for review, you don't need eloquence. You need calibrated confidence. You need to know that when the model says 92% confident, it's actually right 92% of the time.

Why This Matters for AI Automation

The gap between AI demos and AI automation has been one of the most frustrating paradoxes in technology. ChatGPT can write a brilliant essay about supply chain optimization, but try to integrate it into an actual inventory management system and you hit a wall of latency, cost, hallucination risk, and parsing complexity.

System One Models address each of these barriers directly:

  • Latency: 70ms responses enable real-time decision-making at software speeds
  • Cost: Sub-cent pricing per query makes high-volume automation economically viable
  • Reliability: Type-safe outputs eliminate parsing failures and hallucination risk
  • Calibration: Honest confidence scores enable graceful fallback to human review or slower System Two models
  • Architecture: Parallel sampling means no token-by-token generation bottleneck

The Two-System Future

TypeSafe AI isn't arguing that System One Models replace LLMs. The company's own framing acknowledges that both systems have their place. LLMs are extraordinary at what they do — generating text, writing code, explaining complex ideas, and serving as general-purpose reasoning engines.

But the assumption that every AI task should be routed through a text-generating LLM has been the industry's blind spot. Most automation decisions are classification problems, routing problems, or threshold problems. They don't need a paragraph of explanation. They need a fast, confident, structured answer.

The most compelling architecture might be a hybrid one: System One Models like Jev handle the thousands of fast, structured decisions that make up the bulk of automation workflows. When confidence drops below a threshold or a genuinely novel situation arises, it escalates to a System Two LLM for deeper reasoning. This is the same pattern human experts follow — most decisions are fast and intuitive, but complex ones get deliberate attention.

The Founder's Pedigree

TypeSafe AI was founded by Diogo Almeida, who previously worked at OpenAI on the methods that made language models useful at following instructions — research that became the foundation of ChatGPT. His departure from OpenAI and two years in stealth suggest a genuine conviction that the chat paradigm isn't the only path to useful AI.

That conviction is worth paying attention to. The person who helped build the instruction-following methods behind ChatGPT is now saying that chat isn't the right interface for automation. That's not contrarianism — it's an insider's honest assessment of where the paradigm breaks down.

What to Watch

Jev is available in early access today, and the real test will be how it performs in production automation workflows. Benchmarks are one thing; real-world reliability is another. Key questions to watch:

  • Does calibration hold up on distribution-shifted data in production?
  • How does Jev compare to fine-tuned smaller models on specific decision tasks?
  • Will the hybrid System One + System Two architecture become a standard pattern?
  • How quickly can TypeSafe AI expand the range of decision types Jev handles?

TypeSafe AI has identified a genuine gap in the AI landscape and built something architecturally novel to fill it. Whether Jev becomes the foundation of a new model category or an interesting experiment depends on execution from here. But the core insight — that not every AI problem is a text generation problem — is one the industry has needed to hear for a long time.

Related Posts

Pion: When Andon Labs Let AI Run Real Companies and It Actually Worked

Andon Labs just released Pion, a platform that lets AI agents autonomously run real businesses — stores, cafes, and more. After two years of vending machine experiments revealed collusion and power-seeking, they're opening it to everyone.

Sep 15, 20266 min

When AI Solved a 370-Year-Old Cipher Nobody Could Crack

Claude Fable 5.1 just cracked the Cyphral Distich — a 370-year-old encrypted poem that stumped cryptographers for centuries. The solution was hiding in plain sight the entire time.

Sep 14, 20266 min

Why Are AI Agents Lying, Cheating, and Coordinating? Yoshua Bengio Has Answers

AI pioneer Yoshua Bengio breaks down why AI agents are deceiving humans, escaping containment, and coordinating with each other — and why it's only going to get worse unless we rethink how models are trained.

Sep 13, 20267 min