TypeSafe AI launched Jev on September 15, 2026 β a frontier model with no chat, no code generation, and no prose, priced at $0.042 per million input tokens with output tokens free. The founder, Diogo Almeida, co-invented RLHF and InstructGPT β the research lineage that became ChatGPT β and spent two years in stealth building what he calls a new model class: System One Models, trained with a method named RLCD (Reinforcement Learning for Calibrated Decisions). The launch tweet drew 25 million views and 61,000 likes in a day.
What makes this launch worth more than a hot-take is the form of the argument. TypeSafe shipped the announcement with a "we love skeptics" section that pre-published the case against itself, an MIT-licensed adapter that lets anyone re-run their comparison on competitor models, and a live evals dashboard with per-case disagreement walkthroughs. This guide takes that material seriously: every load-bearing claim, checked against what is independently verifiable.
After co-inventing ChatGPT, I kept asking myself: why have superhuman chat models not led to AGI? I've spent the last 2 years in stealth building a new way to train models (RLCD), and a new type of frontier AI model that we are releasing today: Jev.
β @CompleteSkeptic September 15, 2026
What launched
Three artifacts shipped together on September 14β15, 2026, backed by a $40 million seed led by DCVC (the company, founded 2024 in San Francisco, also includes CTO Erik Gafni and COO Sasha Sheng, ex-Meta/FAIR):
1. A new model class: "System One Models." Named for Kahneman's fast, intuitive cognition. Jev, the first instance, does exactly five things: classify, route, score, extract, branch. TypeSafe's use-case line is "smart if-statements" β structured outputs slotting into ordinary software as fuzzy decision rules. What it explicitly does not do: chat, write code or prose, explain its reasoning (there is none available β a compliance-relevant gap), accept images or audio, call tools, or exceed a ~32,000-token budget.
2. A new training method: RLCD. Where RLHF optimizes human preference and RLVR optimizes verifiable rewards, RLCD optimizes "calibrated decisions" β answers carrying epistemically honest probabilities on System One tasks. Every output ships with a confidence score, and the pitch is that higher confidence actually correlates with higher accuracy.
3. A new architecture claim: parallel sampling. LLMs generate one token at a time, each conditioned on the last. Jev answers all questions in a request simultaneously in one query. The company compares this to "the same way Transformers leapfrogged RNNs" β and separately, the docs note that adding more questions to a request does not create context rot, because each question is evaluated in isolation.
Why a model that can't write
The thesis, from Almeida's launch post: models have been superhuman at chat for years, yet automation hasn't followed β because strings are expensive, slow, and unreliable at the exact point where software needs to consume them. Strings must be parsed and validated; they hallucinate; they go off the rails. A model that gives up strings entirely gains three properties ordinary LLMs cannot promise: no type errors (the output shape is defined in advance β "mathematically impossible" to violate), calibrated probabilities on every answer, and parallel sampling that makes the whole thing cheap.
The second thread tweet makes the trade-off explicit: "The gains aren't free: Jev can't generate text." And the third tweet carries the pricing plus the name: $42 per billion input tokens ($0.042/MTok), output tokens free β "too cheap to meter" with the parallel architecture β and the name honors Jevons paradox: efficiency gains that increase total consumption, because every order-of-magnitude drop in the cost of intelligence unlocks use cases that didn't exist before.
Jev costs: $42 / BILLION input tokens ($0.042 / MTok) and output tokens are free (forever β they're too cheap to meter with our new architecture).
β @CompleteSkeptic September 15, 2026
RLCD vs RLHF: the load-bearing claim
This is the claim the whole launch rests on, so it deserves the most scrutiny. RLHF made models follow instructions by optimizing human preference β writeups raters liked. RLVR optimizes outputs a program can verify. RLCD, by contrast, optimizes calibrated decision-making: the model isn't rewarded for sounding right or even being verifiably right in one sample, but for its probabilities being honest β when it says 80%, it should be right about 80% of the time.
Why it matters: a 95%-accurate classifier that never communicates when it's in the 5% cannot be automated around. The confidence score is the product. TypeSafe's docs describe a three-band routing pattern β high confidence acts autonomously, medium confirms or gathers more, low escalates to a human or a bigger model β with thresholds scaled per action by blast radius (their example: approve_transfer requires confidence above 0.9; check_balance doesn't).
And here is the problem, stated plainly: there is no public evidence calibration works. No paper, no reliability curve, no expected-calibration-error number, no ablation separating RLCD from the architecture. The docs themselves narrow the claim β calibration "is measured across groups of predictions; it does not guarantee that an individual answer is correct." On the Hacker News launch thread, the two questions the company left unanswered were exactly the RLCD-objective question and the calibration-maintenance question. This is the single biggest open question in the launch.
The API shape
The entire product is one endpoint β POST https://api.typesafe.ai/v1/systemone β with a deliberately alien request shape. You send a state (unstructured string, object, or array), the model (jev-latest), and a map of typed questions. Three primitives:
| Primitive | Shape | Returns |
|---|---|---|
| Noul (yes/no) | optional criteria for true and false branches | value in [0,1] β notably carries no confidence field |
| Choice | pick one of N options, each with a rubric | argmax choice, full probability map (sums to 1), confidence |
| Score | rate on an ordered scale (β₯2 levels) | probability-weighted score that can land between levels, legend, probabilities, confidence |
POST https://api.typesafe.ai/v1/systemone
Authorization: Bearer $KEY
{
"model": "jev-latest",
"state": {
"ticket": "login loop on Safari 18, works in Chrome",
"account": { "plan": "pro", "age_days": 412 }
},
"questions": {
"should_escalate": { "type": "noul",
"criteria": { "true": "repeat contact or churn signal",
"false": "first-touch resolvable" } },
"next_action": { "type": "choice",
"criteria": { "refund": "...", "debug_session": "...",
"knowledge_base": "..." } },
"urgency": { "type": "score",
"criteria": ["low", "normal", "high", "critical"] }
}
}
// Response: answers keyed to your questions, with
// probabilities + confidence on Choice and Score,
// usage { input_tokens, output_tokens }Almeida maps the primitives to code on Hacker News: "'choice' maps to a 'match' statement, 'score' maps to sorting, 'noul' β short for Bernoulli β maps to if-statements." Practical envelope: Choice options cap at 255 cardinality (above that, a two-stage score-then-choose compose with added latency), no image or audio input, and no OpenAI chat-completions compatibility β one gateway blog summarized it as "calling it needs a bespoke client rather than a base-URL swap." Python and JS SDKs ship, plus an agent skill (npx skills add typesafe-ai/skills --skill typesafe-ai).
The economics
Three pricing regimes exist in the same launch, which is itself a fact worth reporting:
| Source | Speed claim | Cost claim |
|---|---|---|
| Launch tweet | 20β200x faster | 40β400x cheaper (output tokens free) |
| Company homepage | 193.6x faster | 444.6x cheaper "based on workflows for System One tasks" |
| Business Wire PR | β | "up to 100x" faster and cheaper |
The homepage multiples come from TypeSafe's workflow evals dashboard β four published workflows (customer service triage, security-incident response, agent-trace observability, invoice processing), each decomposed into atomic questions answered by every model through the same code harness. Jev's published numbers there: $0.0001β$0.0011 per case at 0.3β0.5 seconds, versus $0.03β$0.18 for the frontier models it is compared against. The vendor's own demo economics: the side-by-side comparison costs $0.000081 (0.114s) vs $0.013880 (8.566s) for GPT-5.6 Terra; the Doom demo runs ~10 decisions per second for roughly $7/hour.
The footprint is real and consistent: $0.042/MTok input appears identically on the blog, home page, X thread, LLMReference, and Vercel's AI Gateway listing, and two independent testers measured costs in the same band. What is not established is sustainability β free output tokens plus a $40M seed is a subsidy-shaped arrangement until proven otherwise, and TypeSafe says so itself: "We can't prove it isn't subsidized." The homepage's "238x lower input price than Claude Fable 5.1" comparison also ignores Anthropic's cache and batch discounts, as press coverage noted.
Claim-by-claim evidence check
The table below is the core of this guide β every load-bearing launch claim, graded. "Verified" means independently reproduced or mechanically checkable; "vendor-only" means you are trusting TypeSafe's materials.
| Claim | Status | The fine print |
|---|---|---|
| $0.042/MTok input, output free | β Verified (5 consistent surfaces + independent cost measurements) | Sustainability explicitly unproven by the vendor; "forever" is a promise, not a contract term |
| 70β500ms latency | β Verified (0.3β0.5s per case on the eval dashboard; Every measured 0.35s median; Near Here 0.59s avg) | All evals run "from our laptops on the West Coast" β no p50/p99 under load, no rate limits, no SLA published |
| Parallel sampling works | β Verified (777 judgments in <0.7s in Every's test; single-call parallel Choice confirmed) | The behavior is real; the novelty is contested (see reception) |
| No type errors | β Verified (schema conformance is mathematical; no counterexample surfaced in 475+ HN comments) | Guarantees the answer's format, not its truth β a wrong answer in a valid shape is still possible |
| Calibrated confidence (RLCD's whole point) | β Vendor-only β no paper, no reliability curve, no ECE number, no ablation | Docs concede calibration is group-level, not per-answer; the two unanswered HN questions were exactly these |
| "Can't hallucinate" | β Vendor-only framing | Conflates type-safety with truth; vendor footnote admits the 0% figure "is not empirical" |
| 193.6x / 444.6x on workflows | β οΈ Vendor-workload peaks | Holds against expensive frontier reasoning models on TypeSafe's own workflows; independent tests measure ~5xβ25x depending on the comparator |
| Workflow accuracy | β οΈ Vendor dashboard | 67.8% aggregate vs Opus 5's 73.1% and Sol's 74.1% β the honest claim is Pareto economics, not peak intelligence |
| Production readiness | β Early access only | Zero named customers, zero revenue disclosures, waitlist-gated access |
What independent tests found
Two early hands-on tests exist, both small but both informative.
Every (Mike Taylor, head of evals): pushed 27 published articles plus 10 AI-styled counterparts through 21 questions across 37 documents β 777 judgments in under 0.7 seconds for about a quarter of a cent. A second test by Every's CEO: 12 synthetic passages (6 clean, 6 with planted defects) β Jev's median was 0.35s/passage vs 8.83s for Claude Fable 5.1 at high effort (~25x faster, ~1/580th the cost) β but Jev missed one of the seven planted defects the comparator caught. Taylor's own conclusion: "Just how well it gets the job done is still an open question."
Near Here (independent engineer): a 50-case event-validation task β Jev scored 96% (48/50) vs 84% for Mistral Small 4 and 86% for Gemini 3.5 Flash-Lite, with zero valid events wrongly rejected (its comparators rejected 5 and 1), at $0.043 per 1,000 decisions vs $2.496 for the Gemini model. This is the best independent evidence for the product: a narrow, real task where the cheap model was both the most accurate and two orders of magnitude cheaper.
Both tests are single-task and small. The honest read: on parallelizable, schema-shaped decision tasks, the cost/latency advantages are real; on general judgment quality, the frontier models still lead, and Jev's own dashboard agrees.
Reception and the classifier concession
The Hacker News thread (475+ comments) produced the week's sharpest technical debate. Engineers mapped Jev onto known techniques within hours: encoder classifiers (BERT/DeBERTa), GLiNER-class span models, constrained/grammar decoding with logit-derived confidence, text diffusion, conformal prediction, and DSPy typed signatures. A same-night Hugging Face reproduction claimed no new training is required at all (that reproduction is itself untested by anyone). The pivotal exchange: when a commenter said "this is basically a zero-shot classifier," Almeida replied "exactly right!" β a striking concession from a launch framed as a new model class. He also declined to disclose the architecture ("close to the chest for now"), deflected the constrained-decoding comparison by arguing OpenAI-style structured outputs "make models dumberβ¦ simply masking logits is insufficient," and defended the hallucination semantics by noting "I don't think it's fair to say a random forest 'hallucinates.'"
The counterweight, which matters for how you weigh all of this: TypeSafe pre-published the skeptic case against itself, shipped the MIT adapter specifically so outsiders could re-run comparisons on their own workflows, and published per-case disagreement walkthroughs on the evals site. That is an unusual evidentiary posture for a frontier-model launch β even where the claims remain unproven.
Caveats
The three-headlines problem. The same launch carries 20β200x/40β400x (tweet), 193.6x/444.6x (homepage), and "up to 100x" (official PR). Progressive Robot's framing is the honest one: the peaks are workload-specific against frontier reasoning models, and "a headline that quotes only the peak is quoting the best case."
The eval methodology has disclosed biases. Reference labels are the average of GPT-6 Astra and Claude Fable 5.1 (which "biases answers towards OpenAI and Anthropic's modelsβ¦ we likely underestimate our model," per the vendor β but agreement-with-consensus is not correctness, and shared errors go undetected). The workflows were built by TypeSafe's own capabilities team ("some bias could exist"). The LLM comparators ran through TypeSafe's own wrapper, which "tends to be slower and more expensive than giving decisions without probabilities." The LLM type-error numbers came from OpenRouter with vendor-admitted routing bias β set against a non-empirical 0% for Jev.
Demo caveats. The Doom bot runs on structured game state, not vision β and the vendor notes a non-AI bot plays better. Wikiracing ran against comparators in non-reasoning mode "to make the demo more bearable to watch," with Choice cardinality capped at 255.
The practical verdict
Try Jev if your product has a high-frequency decision layer: support-ticket triage, content moderation routing, lead scoring, alert classification, guardrailing LLM outputs. The economics are real and independently reproduced β pennies per thousand decisions, sub-second latency β and the confidence-gated routing pattern is genuinely useful even if the calibration story turns out softer than marketed. The MIT adapter makes the comparison cheap to run on your own data.
Be skeptical if your use case needs auditable reasoning (Jev provides none β there is no explanation available at all), needs production SLAs (nothing published, early access only), or is being sold on the 444x number (that is the best-case workload peak). And watch the calibration question: it is the difference between "a new model class" and "a well-engineered zero-shot classifier with honest pricing" β a distinction Almeida himself blurred with his "exactly right!" reply.
Watch for: a calibration paper or reliability curves (the claim's life-or-death evidence), pricing changes after the seed money deploys, rate limits and load-tested latency, and the first named customers. Any of those arriving would materially upgrade this from "interesting launch" to "infrastructure."
FAQ
What is Jev?
TypeSafe AI's first model, launched September 15, 2026 β a "System One Model" that takes unstructured state in and returns typed decisions (yes/no, choice, score) with confidence scores in 70β500ms. It cannot generate text, code, or explanations.
How much does Jev cost?
$0.042 per million input tokens ($42 per billion), with output tokens free. Independently measured at roughly $0.04β$0.05 per 1,000 decisions on real tasks. The company acknowledges pricing sustainability is unproven.
What is RLCD?
Reinforcement Learning for Calibrated Decisions β TypeSafe's alternative to RLHF/RLVR. It optimizes for epistemically honest probabilities rather than human preference or verifiable rewards. No paper or calibration evidence has been published yet.
Can Jev hallucinate?
It cannot produce type errors β the output schema is guaranteed. But it can still select a wrong option in a valid format. The vendor's own docs note calibration is a group-level property, not a per-answer guarantee.
Who is behind TypeSafe?
Founded 2024 in San Francisco by Diogo Almeida (CEO; co-inventor of RLHF/InstructGPT, ex-OpenAI post-training, ex-Google Brain), Erik Gafni (CTO), and Sasha Sheng (COO, ex-Meta/FAIR). $40M seed led by DCVC.
Is it really 444x cheaper than GPT?
That figure is a workload-specific peak from TypeSafe's own evals against frontier reasoning models. Independent tests measured ~5xβ25x depending on the comparator. The range across all sources is 5x to 444x β quote the use case, not the headline.
Sources
Sources checked September 16β17, 2026:
- Introducing System One Models and Jev β TypeSafe AI blog (Sep 14, 2026)
- Launch thread β Diogo Almeida (@CompleteSkeptic), Sep 15, 2026 (6 tweets)
- TypeSafe docs β API reference, System One concepts, patterns
- Workflow evals dashboard β four workflows, per-model tables, disagreement walkthroughs
- TypeSafe AI debuts model for machines that plays Doom β The Register, Sep 16, 2026
- Mini vibe check: Jev judged everything I've written in 0.7 seconds β Every, Sep 15, 2026
- Jev Model: Proven Speed, Smart Logic Without a Chatbot β Progressive Robot, Sep 16, 2026
- TypeSafe AI emerges from stealth with $40M β Tech Startups, Sep 16, 2026
Related reading: Gemini 3.8 Live complete guide and Gemini 3.8 Flash complete guide.
