logo
  • Environments
  • Enterprise
  • Pricing
Blogs
Industry|Sep 18, 2026

What Is Jev? TypeSafe AI's System One Model, Explained

A new kind of AI model that returns typed decisions instead of text — and where it fits in an agent workflow.

EigentEigent
Share to
What Is Jev? TypeSafe AI's System One Model, Explained
  • What is Jev, in one sentence?
  • How Jev differs from an LLM
  • The three primitives
  • What Jev is good at — and what it isn't
  • Pricing and speed: read the fine print
  • Where Jev fits in an agent loop
  • The bottom line
  • Build decision-driven workflows with your own AI workforce
Automate Everything with
AI Workforce on Desktop
Download Eigent

Most AI launches this year raced to be smarter at chat. TypeSafe AI went the other way. On September 15, 2026 it introduced Jev, its first "System One model" — an AI that never writes a sentence and instead returns typed, probabilistic decisions your code can act on directly. If you build agents or automation, Jev is worth understanding: it targets the boring, high-volume decisions that LLMs make slowly and expensively. Here's what it is, how it works, what it costs, and where the claims deserve skepticism.

What is Jev, in one sentence?

Jev is a frontier model from TypeSafe AI that takes program state plus a set of typed questions and answers all of them in a single parallel pass — returning structured values with calibrated probabilities instead of generated text.

The company frames this as a new category of model, not just a smaller LLM. TypeSafe calls it "System One," borrowing Daniel Kahneman's distinction between fast, intuitive System 1 thinking and slow, deliberate System 2 reasoning. The bet: most decisions inside software are quick judgments ("which bucket is this?", "is this urgent?"), and we've been renting a full reasoning model to make them.

Jev was built by Diogo Almeida, who helped create the RLHF and InstructGPT work behind ChatGPT at OpenAI, and launched with a $40M round led by DCVC. The name nods to economist William Stanley Jevons — the idea being that as the cost of a decision drops, demand for decisions explodes.

How Jev differs from an LLM

The core difference is the output. An LLM generates a string one token at a time; you then parse and validate that string, and hope it didn't hallucinate or return the wrong shape. Jev defines the possible answers up front and returns them as typed values, so there is nothing to parse and — by construction — no type errors.

Jev (System One)Frontier LLMs
OutputTyped decisions + probabilitiesGenerated text (strings)
SamplingParallel, one passSequential, token by token
Latency70–500 ms (self-reported)Seconds
Structured-output errors0% by constructionNon-zero
ConfidenceCalibrated with every answerOften overconfident

Two things stand out. First, parallel sampling: Jev evaluates every question in a request at once, so adding a tenth question barely changes response time. Second, calibrated confidence: Jev is trained with a method TypeSafe calls Reinforcement Learning for Calibrated Decisions (RLCD), which optimizes its probabilities against outcomes rather than human preference. In aggregate, higher confidence is meant to mean higher accuracy — which is exactly what you need to decide when to act automatically and when to escalate.

It also understands natural-language input like an LLM, but currently accepts text only — strings, JSON, or arrays of text. No images, audio, or video yet.

The three primitives

The entire API is three question types. That's the design, not a limitation:

  • Choice — pick one option from a set (up to 255). Returns the choice, a probability per option, and a confidence score. Add an explicit other option so the model can say "none of these fit."
  • Score — a position on a 2-to-10 level scale you describe in words. Returns a score that can land between levels (e.g., 1.4).
  • Noul — a yes/no question returned as a single probability from 0 to 1.

A support-ticket call might ask, in one request: which team should handle this (Choice), how frustrated the customer is (Score), and whether they explicitly asked for a refund (Noul). Your code then combines those typed answers with ordinary if statements. TypeSafe's own documentation frames Jev as a "smart if-statement" — classify, route, score, extract, or branch where hand-written rules are too brittle.

What Jev is good at — and what it isn't

Jev is built for high-volume, repeated decisions over known answer sets: ticket triage, intent routing, content moderation, extraction, scoring, and guardrail checks on other models' outputs. Because questions run in parallel and output is free, you can "fan out" and ask everything up front, then let code decide what mattered.

It is the wrong tool for anything that needs writing: chat, code generation, or an explanation of its reasoning. Two more limits worth flagging:

  • No world knowledge. Jev only knows the state you hand it; it can't look anything up. That step sets the ceiling on any workflow built around it.
  • Calibration is a group property. TypeSafe is clear that calibration holds across many predictions — it does not guarantee any single answer is correct. Jev can still be wrong.

Pricing and speed: read the fine print

TypeSafe's headline numbers are striking: input at $0.042 per million tokens with free output, latency of 70–500 ms, and homepage claims of "193.6x faster, 444.6x cheaper" versus LLMs on its workflow benchmark.

Treat these as vendor claims, not independent results. TypeSafe itself adds useful caveats: the evals were run from its own laptops on the West Coast; it can't prove pricing isn't subsidized; and its workflows, while not in the training set, were built by its own team. The benchmark also uses the average of GPT-6 Astra and Fable 5.1 as the "correct" reference, which bakes in a bias toward those models. Practical guides covering the launch, like this dev.to walkthrough, repeat the same warning: the speed and cost figures are self-run and unreproduced. The one claim that's hard to dispute is 0% type errors — schema matching is guaranteed, so a single counterexample would falsify it.

Where Jev fits in an agent loop

For teams building multi-agent systems, the interesting pattern is confidence-gated routing. Instead of one accuracy threshold for the whole system, you set a threshold per action, scaled to what being wrong costs: act autonomously on cheap, read-only decisions above high confidence; ask for confirmation on costly ones; and route to a human — or to a full reasoning model — when confidence is low.

That makes Jev a decision layer inside an agent loop, not a replacement for your LLM. A common shape is a cascade: Jev classifies and routes cheaply, deterministic code handles what it can, and a frontier model takes the hard minority. The value is fewer expensive LLM calls and a clear, auditable boundary between "the machine decided" and "a person should look."

The bottom line

Jev is a genuinely different idea: an AI primitive shaped like a function call rather than a chatbot. If it holds up outside the vendor's own benchmarks, System One models could take over the millions of small judgments that currently sit awkwardly inside LLM prompts. For now, it's early access, text-only, and every performance number is self-reported — promising, but unproven. The right move is to try it on one narrow, high-volume decision and measure it against your current setup.

Build decision-driven workflows with your own AI workforce

Jev is one layer of the automation stack — the fast decision. The rest is orchestration: gathering state, calling the right tool, and acting on the result across real apps. That's what Eigent does as an open-source, multi-agent "Cowork" desktop app, coordinating agents through end-to-end workflows like reviewing GitHub PRs or triaging incoming work. Want to build confidence-gated automation locally? Download Eigent and wire your decisions into a workforce that acts on them.

Recent Posts

Periodic Neon: The Lab-Trained AI That Beats Frontier Models at Science
IndustrySep 18, 2026

Periodic Neon: The Lab-Trained AI That Beats Frontier Models at Science

Periodic Neon is a 1T-parameter AI trained on physical lab data that beats GPT-6 Astra at diffraction analysis. Here is what it does and why it matters.

EigentEigent
Meta Muse: The Personal AI Agent That Books, Buys, and Negotiates
IndustrySep 9, 2026

Meta Muse: The Personal AI Agent That Books, Buys, and Negotiates

Meta Muse is a personal AI agent that books travel, buys things, and negotiates bills from a chat. Here's what it does, pricing, security, and how it compares.

EigentEigent
Eigent Release Notes v1.0.4: Skills & Connectors Dashboards, Durable Multi-Turn Runs
ProductSep 4, 2026

Eigent Release Notes v1.0.4: Skills & Connectors Dashboards, Durable Multi-Turn Runs

Eigent v1.0.4 rebuilds Skills and Connectors as management dashboards and strengthens multi-turn agent work, workspace checkpoints, and connector states.

Douglas LaiDouglas Lai
Automate everything with AI workforce on desktop
Download Eigent

Try Eigent today

Download the open-source desktop app. Your AI workforce, running on your machine.

Download Eigent
Eigent

Get the latest updates, tutorials, and releases on AI workforce automation.

Thank you for subscribing!

ProductEigentEnvironmentsPricingEnterprise
ExploreSolutionsUse CasesSkillsPluginsBlogs
DevelopersDocsGitHubCAMEL-AIOpen Source FundPartner
DownloadFor open source
CompanyAbout UsBrandCareersTerms of UsePrivacy PolicySecurity & TrustCookie PolicyRefund & Trial Policy

All rights reserved © 2026 EIGENT UK LTD