Podcast episode
Why a New Class of AI “Judgment Models” Could Have Big Business Implications
agents cost-compression evals inference model-pricing
Nathaniel Whittemore's podcast takes up a company called TypeSafe, which launched a model named Jev that does exactly one thing: output a number. "Is this customer angry? → 0.9." The pitch is that most of what businesses are paying OpenAI and Anthropic to do is deciding, not writing, and a general-purpose language model is enormous overkill for a yes/no call.
Whittemore interviews TypeSafe co-founder Diogo Almeida, who claims the system runs 20 to 200 times faster and 40 to 400 times cheaper than standard models. That range is so wide it signals they don't know either. The demo used 37 clean documents. Production data is never clean. The underlying technique, calibrated classification, has existed for twenty years. TypeSafe is selling you out of the labor of building it yourself, which is a real service, but it is a convenience layer, and convenience layers get competed to zero.
The big labs will bolt a cheap scoring tier onto their existing APIs the moment this category proves out. Test Jev if your agent pipeline is burning money on yes/no calls. Don't wire your routing logic to a two-year-old startup.
Full analysis
A company called TypeSafe launched a model named Jev that doesn't write prose. It answers narrow questions with a number: "Is this customer angry? → 0.9." The pitch is that most of what you're paying GPT-4o and Claude to do isn't writing at all. It's deciding. And you're renting a Ferrari to run to the corner store.
Here's what's actually being decided for the reader: whether the classification and routing work buried inside your agent pipelines, the triage, the lead scoring, the compliance flags, should keep running through a general-purpose language model, or move to something cheaper and dumber that only outputs scores. This is easy to undo. Nobody rewrites their stack on a launch-day claim. There's no deadline, no shutdown date, no contract renewal forcing your hand. So the right posture is to test, not to commit.
The Skeptic
Two years in stealth, a co-founder who "claims" to have co-invented ChatGPT, and a launch benchmark of 777 judgments in 0.7 seconds. Every one of those is a marketing artifact until someone who doesn't work at TypeSafe runs it on their own messy data. "20 to 200 times faster, 40 to 400 times cheaper" is a range so wide it tells you they don't know either. The demo used 37 clean documents and 21 tidy questions. Production is 37,000 documents where half are malformed and the angry-customer question has no clean answer. Matt Stockton got closest to the truth: this is a nice front-end on classification and regression, techniques that have existed for twenty years. The novelty is the packaging.
The Researcher
Strip the branding and Jev is a calibrated classifier. "Calibrated" means when it says 0.9, it's actually right about 90% of the time, which most language models are bad at. That's a real and useful property. RLCD, the training method, optimizes for honest probabilities instead of pleasant-sounding text. Fine. But calibration is measurable, and TypeSafe hasn't shown the one chart that matters: a reliability curve on out-of-distribution data. The three papers pulled alongside this episode, on experiential confidence and calibration-driven reranking, are the actual research frontier here, and none of them needed a new company or a "judgment model" label to say so. The idea is sound. The claim of a distinct architecture is oversold.
The Compute Pragmatist
"Output tokens priced at zero" is where the cost argument starts, because a score is a handful of tokens and a language model charges you for generating paragraphs you then throw away. That's where the 40-to-400x cost gap comes from, and it's real for the narrow task. If you run moderation or triage at a million calls a day through Claude, you're paying generation prices for a yes/no answer. A calibrated classifier collapses that bill by an order of magnitude. But this only touches the slice of your spend that's decisions, not generation. Nobody's ChatGPT bill is mostly classification. So the total savings depend entirely on your mix, and most operators haven't measured their own mix.
The Open-Source Advocate
Here's the problem for TypeSafe. Stockton already named the alternative: classical machine learning. A fine-tuned BERT-style classifier, or a small open model with a scoring head, does calibrated classification today, on hardware you own, with no per-call vendor. The reason companies don't is that it requires labeling data and hosting a model, and most teams lack the muscle. TypeSafe is selling you out of that chore. That's a real service. But it's a convenience layer over commodity capability, and convenience layers get competed to zero. The moment this category proves out, Hugging Face has ten open equivalents and the labs bolt a cheap classification tier onto their existing APIs.
The Enterprise Buyer
A two-year-old startup wants to sit in the decision seat of my agent pipeline, the "Jev decides" step where the routing and the flagging actually happen. That's not a place I put a vendor I can't audit. What's the reliability curve on my data? What happens to my compliance flags when TypeSafe raises prices or gets acquired? Meanwhile Salesforce showed up at Dreamforce with "AI Force," a connector that lets outside agents reach my Salesforce data, and "Coa," a fine-tune of NVIDIA's Nemotron for sales work. That's the same decision-layer land grab from an incumbent I already pay. I'd rather test a classifier I can move than wire my routing logic to a stealth graduate.
Where they part ways
The real disagreement is whether "judgment model" is a product category or a feature. The Compute Pragmatist and the Builder see a genuine cost win on a specific slice of work. The Open-Source Advocate and the Enterprise Buyer see a convenience wrapper on classical machine learning that either the open ecosystem or the big labs will absorb within a year. Both can be right at once: Jev works, saves money, and still gets commoditized. The second tension is calibration. The Researcher says the honest-probability property is the only thing that makes this more than a repackaged classifier, and TypeSafe hasn't published the proof.
What it hinges on
Three things. Does the calibration hold on your messy, out-of-distribution data, not their clean demo. Does classification actually make up enough of your inference bill to matter. And does anyone let a stealth vendor own the "decides" step of a production pipeline. If you want to test it, don't test the demo. Take a week of your real triage or moderation traffic, run it through Jev and through a fine-tuned open classifier, and plot both reliability curves against ground truth. The winner is whichever is better calibrated on your data at the price you can live with.
Prediction: By 2027-03-22, at least one of OpenAI, Anthropic, or Google will ship a dedicated low-cost classification or scoring tier (calibrated score output, priced well below their generation tiers) as a first-class API feature, absorbing the "judgment model" use case rather than ceding it to standalone vendors like TypeSafe.
Confidence: Medium. The cost logic is obvious and the labs already have the models and the billing rails.
Why: The entire Jev pitch rests on one gap: language models charge generation prices for tasks that only need a score, and output tokens for a "0.9" answer are nearly free to produce. That gap is trivial for an incumbent to close, because the labs already run the models and already meter per-token. Every classification call TypeSafe wins is a call that left an OpenAI or Anthropic invoice, and defending high-margin generation revenue by adding a cheap scoring tier is the kind of move labs make fast when a startup names the arbitrage out loud. The less likely world is one where the labs watch a whole class of routing and triage traffic walk out the door to a two-year-old vendor without shipping the obvious counter.
Revisit by 2027-03-22: We're right if OpenAI, Anthropic, or Google launches a distinct low-priced classification or calibrated-scoring API tier by then. We're wrong if none of the three ships one and standalone judgment-model vendors remain the only way to buy this.
Comments