TL;DR
- Jev is a frontier model that never generates text. You hand it the options; it scores them, in one parallel pass.
- The demo: an LLM takes 8.5 seconds to compose a verdict. Jev returns one in 0.1 seconds, having read considerably less.
- The trade is declared at the outset: no sentences, no explanations, no code, no chain of thought.
- Where it lands: model routing and tool-call guardrails — the classifier layer that has been locked inside closed-source coding harnesses.
- For CIOs, this is a cost-architecture story, not a capability story.
45 Seconds That Explain It Better Than the Launch Did
Jev was announced by TypeSafe AI, whose CEO frames the whole thing as a poke at the scaling consensus: “why have superhuman chat models not led to AGI?” His answer is that generation itself is the bottleneck. They trained it with a method called RLCD — reinforcement learning for calibrated decisions — and claim 20–200x faster inference and 40–400x lower cost on classification work.
The launch video, I regret to report, resisted comprehension. So Matija Sosic rebuilt it in 45 seconds, which is the sort of public service one rarely sees from this industry:
Watch it on X: @MatijaSosic — a 45-second TL;DR on Jev
His own summary of why he made it: “I find the core idea beautifully simple, but the video made it really hard to understand.”
What Actually Happens
The demo runs a single question — “is this invoice fraud?” — through two architectures.
The LLM begins to compose. A timer runs. Token by token it produces: “Based on the line items and the vendor history, this invoice appears to be legitimate.” Eight and a half seconds to say one sentence.
Jev does something structurally different. Your application supplies the option set — FRAUD / CLEAN / REVIEW — and Jev scores each one: FRAUD 0.07 · CLEAN 0.88 · REVIEW 0.05. No tokens. One forward pass, every option scored at once. 0.1 seconds.
You then read the probabilities and pick. The model never writes. It points at one of your options, rather like an exam candidate who can tick boxes with great confidence but declines, on principle, to attempt the essay question.
The API shape follows from that: you send a state (context) plus questions about it. Questions come in three flavours — choice (pick from a set), score (rate against ordered levels), and yes/no (the probability a statement is true). Ask five questions about one state in a single request and, because they’re evaluated in parallel, adding questions barely moves latency and costs only the extra tokens.
The Trade, Stated Honestly
The most useful panel in the video is the one admitting what you give up.
| It can | It can’t |
|---|---|
| pick an action | write a sentence |
| classify | explain itself |
| score / rank | write code |
| route | reason step by step |
At 100x the speed.
“It gave up writing to get the speed. That’s the whole trade.”
One is grateful for the candour, even if the candour is doing a fair amount of work for the benchmarks.
Where This Lands in an Agent Harness
Two patterns matter, and both concern the layer around the model rather than the model itself.
Model routing. Before a task runs, classify it and pick the cheapest model that can finish it. Direct lookups and small edits go to a fast, small model; architecture and high-stakes calls go to a frontier one. The decision is made once, at the start of the run, and the probabilities stay in agent state for auditing. This is thoroughly unglamorous work — and it is where most of your inference bill actually goes.
Tool-call guardrails. Agents are still not trustworthy. Bad instructions, or a sufficiently motivated attacker, will nudge them into destructive actions. Every serious coding harness already classifies dangerous actions before execution, which is precisely why people have slowly learned to trust them. But that classifier has lived in the closed-source parts of the harness. A cheap, fast decision model makes the pattern portable: inspect the tool call, score the risk, block it before the tool runs.
That is the strategically interesting part. The classifier was never the difficult science — it was simply the part nobody could buy.
The CIO Read
Strip out the benchmark claims and the shape of this is familiar. You are being offered a way to stop paying generation prices for decision-shaped work.
Most production AI traffic in an enterprise is not creative. It is routing, triage, classification and gating. Running it through an autoregressive engine is a category error: you pay for a paragraph to obtain a label, and you inherit the latency of text nobody reads. It is a little like commissioning a 4,000-word memorandum to establish whether the office lights are off.
So the honest assessment is narrower, and more defensible, than an AGI claim. The 100x figure is the quotable one and the weakest — a model that emits nothing is trivially faster, because the work has been removed rather than done. One might reasonably ask whether speed obtained by declining to do the job ought to count as speed at all. The real claim is that generation was never needed for a large slice of your traffic, and that one is sound.
Two caveats before you commit. First, no rationale is recoverable — there is no reasoning trace, because there was no reasoning. For decisions touching regulation, audit or user trust, that is disqualifying on its own; for a routing hop or a game tick, nobody was going to read the explanation anyway. Second, watch calibration, not accuracy. 0.88 against 0.05 is an easy call. The interesting number is 0.51 against 0.49, and that is where these systems earn or lose their place in your stack.
Start where a wrong answer is cheap and a slow answer is expensive. Then earn the right to move it closer to the decisions that matter.