You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A deep dive into TypeSafe AI and its first model, Jev (compiled 2026-09-22; based on the official launch and cross-checked coverage; TypeSafe has published no paper or weights, so technical details follow the official account and are labeled as such).
TL;DR
Jev, launched September 15, 2026 by TypeSafe AI — founded by ex-OpenAI researcher Diogo Almeida, a lead author of InstructGPT credited as a co-inventor of RLHF — is the first "System One model": it abandons text generation entirely and only returns structured, calibrated decisions for software. Officially 20-200x faster and 1/40 to 1/400 cheaper than frontier LLMs on comparable tasks; output tokens are free.
Why it matters
The person: Almeida helped make AI good at conversation; he now builds AI that says nothing at all.
The category contrast: for four years every model raced on generation; Jev is the first high-profile "subtraction model" — trading away generation for speed, cost, and type safety.
The timing: the company exited two-year stealth with a $40M seed round (led by DCVC) on day one — not a toe in the water.
Company and team
TypeSafe AI: founded 2024 in San Francisco; positioning is "machine-native, composable AI" — designed to be called, combined, and constrained by software, not mediated through chat.
Founders: CEO Diogo Almeida (ex-OpenAI / Google Brain), CTO Erik Gafni, COO Sasha Sheng.
Funding: $40M seed led by DCVC, announced September 15, 2026 (Forbes reports a ~$200M valuation).
Naming Easter egg: "Jev" honors economist William Stanley Jevons — the Jevons paradox (efficiency gains increase total consumption). Almeida's bet: the cheaper tokens get, the more machines will consume, and decision calls will dwarf chat. Whether that analogy holds basically decides the company's ceiling.
What Jev is: a System One model
Borrowing Kahneman's framing: System 1 is fast, intuitive judgment; System 2 is slow deliberation. Today's LLMs are generation machines forced to impersonate System 2 — even to answer "which department should take this ticket", they must "think" token by token.
Jev restores such judgments to System 1: no string generation at all; a single parallel computation outputs probability distributions over predefined options. Almeida's summary: "Think of Jev as a frontier-intelligence function call: unstructured state in, typed probabilistic decisions out."
Generative LLM (with structured output)
Jev
Output
generates text, then parse — can be malformed or semantically wrong
type-correct by construction (0% type errors), returns typed values directly
Latency
seconds (official comparison: 3-329s on comparable questions)
70-500ms end-to-end
Cost
input + output metered
input $0.042/M tokens; output free (almost nothing to meter)
Confidence
self-reported, usually uncalibrated ("confidently wrong")
RLCD's whole point: 80% confidence should mean ~80% correct
Scope
nearly anything
only bounded decisions: choose / score / yes-no
Technical anatomy
The three output primitives (the entire API vocabulary)
Choice: pick from a predefined set (up to 255 options) and return the distribution — e.g. ticket routing returns {"billing": 0.08, "technical": 0.85, "sales": 0.07} with confidence 0.82.
Score: rate within a numeric range with confidence — risk tiers, ranking, batch labeling.
Noul: a calibrated yes/no probability — classic use is second-guessing another model's output (lightweight scalable oversight) or branching automated workflows.
The endpoint is POST /v1/systemone with model jev-latest — not chat completions.
RLCD: Reinforcement Learning for Calibrated Decisions
The research claim at the core. Known alignment methods:
RLHF: optimizes for what human raters prefer — rewards text that reads well, which biases judgment tasks;
RLVR: optimizes verifiable answers (math, code) — but most judgments have no verifier.
RLCD targets the gap: no human preference, no automatic verifier, but calibration required — training aligns confidence with actual accuracy. If it holds, this is the key property for risk-controlled automation: set a confidence threshold (auto-approve above 80%, route the rest to humans). LLM "confidence" currently can't support that.
Architecture: parallel sampling vs autoregression
Per the official account, a new architecture plus parallel sampling computes probabilities for all candidate options at once instead of generating an answer token by token. The latency gap (70-500ms vs 3-329s) comes from this, not from being a "smaller model".
Official numbers and pricing (all vendor figures)
Speed: 20-200x faster than frontier LLMs on structured tasks (best-case benchmark: 193.6x)
Cost: 1/40 to 1/400 (best-case 444.6x) — the company itself notes these are upper bounds
Not for: anything needing explanation, reasoning traces, open-ended generation, or cross-domain generalization. Jev is not a "faster LLM" — it's a specialized component meant to replace an LLM in a function role. Used alone it's a mismatch; as a stage in an LLM pipeline it's the design intent (Noul checking LLM output is the canonical combo).
Criticisms and limitations (the other half of the research)
Unverifiable: no weights, no research paper, architecture described only at a high level; no outsider can reproduce any number. All benchmarks are in-house.
"Never hallucinates" is marketing: Jev eliminates type errors and generation hallucination, but semantic errors remain — a wrong option choice raises no error; only the probability distribution shifts. Calibration itself lacks third-party verification.
Narrow scope: works only within a predefined bounded option set. Much of real decision-making is designing the option set correctly — still human work.
Valuation bet: the Jevons-paradox wager assumes decision-call volume inflates like energy consumption — unproven; Forbes' $200M valuation prices a narrative, not revenue.
Reversibility of the moat: the API is simple, so replaceability is high. If a major lab ships a "calibrated classification head" as a standard LLM component (the direction function calling is evolving), the window for standalone decision models could narrow.
Industry significance
Splitting decision from generation: TypeSafe's argument — much of an agent's work needs fast reliable judgment, not generation — echoes the System1/System2 split in robotics and cognitive science. It may define a new layer of agent infrastructure.
Calibration as a sellable feature: RLCD turns "trustworthy confidence" from a research topic into a product attribute. If finance, healthcare, and compliance buy it, LLM vendors will be forced to take calibration seriously.
Metrics to watch: third-party benchmarks reproducing the speed/cost claims; a paper or technical report; first enterprise customers; and how LLM vendors respond (whether OpenAI/Anthropic ship calibrated decisions as a standard capability).
Discussion: will "decision layer vs generation layer" become a standard split in agent infrastructure? Between dedicated decision models like Jev and "LLM + function calling + calibration fine-tuning", who wins long-term? Share your experience or industry observations.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
A deep dive into TypeSafe AI and its first model, Jev (compiled 2026-09-22; based on the official launch and cross-checked coverage; TypeSafe has published no paper or weights, so technical details follow the official account and are labeled as such).
TL;DR
Jev, launched September 15, 2026 by TypeSafe AI — founded by ex-OpenAI researcher Diogo Almeida, a lead author of InstructGPT credited as a co-inventor of RLHF — is the first "System One model": it abandons text generation entirely and only returns structured, calibrated decisions for software. Officially 20-200x faster and 1/40 to 1/400 cheaper than frontier LLMs on comparable tasks; output tokens are free.
Why it matters
Company and team
What Jev is: a System One model
Borrowing Kahneman's framing: System 1 is fast, intuitive judgment; System 2 is slow deliberation. Today's LLMs are generation machines forced to impersonate System 2 — even to answer "which department should take this ticket", they must "think" token by token.
Jev restores such judgments to System 1: no string generation at all; a single parallel computation outputs probability distributions over predefined options. Almeida's summary: "Think of Jev as a frontier-intelligence function call: unstructured state in, typed probabilistic decisions out."
Technical anatomy
The three output primitives (the entire API vocabulary)
{"billing": 0.08, "technical": 0.85, "sales": 0.07}with confidence 0.82.The endpoint is
POST /v1/systemonewith modeljev-latest— not chat completions.RLCD: Reinforcement Learning for Calibrated Decisions
The research claim at the core. Known alignment methods:
RLCD targets the gap: no human preference, no automatic verifier, but calibration required — training aligns confidence with actual accuracy. If it holds, this is the key property for risk-controlled automation: set a confidence threshold (auto-approve above 80%, route the rest to humans). LLM "confidence" currently can't support that.
Architecture: parallel sampling vs autoregression
Per the official account, a new architecture plus parallel sampling computes probabilities for all candidate options at once instead of generating an answer token by token. The latency gap (70-500ms vs 3-329s) comes from this, not from being a "smaller model".
Official numbers and pricing (all vendor figures)
10 calls/second ($7/hour); beating frontier models in non-reasoning mode on a Wikipedia link-navigation benchmarkWhat it's for / not for
For: moderation triage (Noul "needs review?" gates a Choice "which policy" only on flagged items), ticket routing, risk scoring, batch annotation, agent-output verification, workflow branching, high-frequency decisions (game NPCs, real-time bidding, re-ranking).
Not for: anything needing explanation, reasoning traces, open-ended generation, or cross-domain generalization. Jev is not a "faster LLM" — it's a specialized component meant to replace an LLM in a function role. Used alone it's a mismatch; as a stage in an LLM pipeline it's the design intent (Noul checking LLM output is the canonical combo).
Criticisms and limitations (the other half of the research)
Industry significance
References
Official:
Coverage and deep dives:
Discussion: will "decision layer vs generation layer" become a standard split in agent infrastructure? Between dedicated decision models like Jev and "LLM + function calling + calibration fine-tuning", who wins long-term? Share your experience or industry observations.
All reactions