Ep 990 Blog 5:15 w/ Onyx & Echo

Can Jev Be a Better Agent Evaluator?

LangChain's evaluation of TypeSafe AI's Jev as an agent evaluator reveals a fundamentally different architecture — not an LLM that generates text, but a 'System One' model that returns typed decisions with calibrated probabilities. In a narrow test against GPT-5.6 Luna, Terra, and Claude Sonnet 4.6, Jev matched human oracle accuracy on binary pass/fail decisions (100% vs. 80–99.8%), achieved 92–913x lower variance on continuous scoring, and cost $0.00035 per call versus $28.17 for Claude. The implication: agent evals may have a third viable path beyond code-based (narrow, deterministic) and LLM-as-judge (slow, expensive, non-deterministic). The catch: this is one narrow test on five weather requests, and low cost can amplify mistakes at scale.

Embed this episode

Paste this on any site — the player is a self-contained iframe with no cookies or trackers.

<iframe src="https://sandrise.io/exploring-next/embed/990"
  width="100%" height="180" style="max-width:640px;border:0;border-radius:12px;overflow:hidden"
  title="Exploring Next — Episode 990 audio player"
  loading="lazy" allow="autoplay" referrerpolicy="strict-origin-when-cross-origin"></iframe>
Embed & API docs →
Script Haiku 4 Voice OpenAI TTS

Transcript

Onyx Okay, so TypeSafe AI released this thing called Jev, and LangChain just put out this eval comparing it to GPT-5.6 Luna, Terra, and Claude Sonnet 4.6, and I need to know what you make of this, because the variance numbers are genuinely wild.

Echo Yeah, I saw this. The central claim is that Jev is not an LLM — it's a "System One" model, so it doesn't generate text, it returns typed decisions with probabilities. And on agent eval tasks, that apparently means lower variance, higher accuracy, and a tenth of a cent per call.

Onyx Right. But here's the thing that's bugging me: five weather requests. Five.

Echo Yeah.

Onyx They froze five agent runs, had each judge evaluate them a hundred times, and the headline is Jev's variance is 92 to 913 times lower than the others. That's the kind of number that makes me want to run it on my own traces before I believe it generalizes to anything real.

Echo Okay, but the variance part is actually interesting mechanically. Jev was designed to output structured answers, not generate tokens. An LLM-as-judge generates text token-by-token, then maps that to a score. That's inherently stochastic — different sampling, different text, different score. Jev just evaluates state and returns a probability directly. So the variance difference isn't surprising; it's almost built in.

Onyx That makes sense.

Echo The accuracy numbers are the thing I'd actually push on. Jev hit 100 percent on the binary pass-fail. Terra hit 99.8, Luna 96.4, Claude 80. But — and this is the part the article flags too — lower variance does not automatically mean higher accuracy. A judge can be consistently wrong.

Onyx Right, so what we're really looking at is: on five frozen weather queries, Jev was reliable and correct, and the LLMs were less reliable. But the scope is so narrow that I genuinely cannot tell whether the architecture or the task is doing the work.

Echo Exactly. A weather eval is actually a pretty clean task — you've got a user question, a tool call, a result, and a judgment of whether the tool was used correctly. That's structured, and Jev's designed for structured. Now run it on something messier — user satisfaction, creative problem-solving, multi-step reasoning where there are multiple valid paths — and I'd want to see whether Jev still dominates or whether the LLMs start catching up.

Onyx But here's what I actually care about: they cost $0.00035 per call. Claude cost $28.17 for the same hundred repetitions of five runs. That's not a rounding difference.

Echo No, that's real.

Onyx And the article makes this point that if evals are cheap enough, teams stop rationing them. They can run evals on more production traces, more frequently, with repeated judgments to raise confidence. That's a product win, not a model win.

Echo Okay, I'll take that. The cheaper you make evaluations, the tighter the feedback loop between production behavior and development. That's true regardless of whether Jev's architecture is the reason or just a side effect of the design.

Onyx Right. But the caveat — which they do name — is that a cheap evaluator that's consistently wrong can poison your feedback signal at scale. A 99.8 percent accuracy on five weather tasks doesn't tell me it'll be 99.8 percent accurate on your production traces, which are messier and weirder.

Echo Yeah, this is basically the artifact-readiness evaluation problem from earlier in the year, just with a different lens. You're asking: how do I know whether my judge is actually reliable on my data? And the answer is still: you have to test it on your data.

Onyx Mm-hm.

Echo The thing I'd actually run first is: take your own agent traces, have a human label a subset, then run both Jev and your current LLM judge on the same traces and see whether Jev's variance and accuracy actually hold up. If they do, the cost difference alone makes it worth switching.

Onyx That's the right move. And honestly, I think this is good work — it's a narrow experiment, but it's honest about being narrow. They didn't oversell it.

Echo Yeah, the article explicitly says "the results are promising, but early" and flags that low cost can amplify mistakes. That's the right calibration.

Onyx So the takeaway is: Jev's architecture is genuinely different and the variance numbers are real on this narrow test. Cost is a legit product win. But you need to validate it on your own traces before you trust it in production.

Echo And we still don't know whether System One models are the right abstraction for agent evals or whether this is just a really good fit for a specific class of problem. Ask me again in six months when people have run this on their actual production agents.

Onyx Yeah, okay. But if it does generalize, the feedback loop tightens a lot.