My Early Thoughts on Jev

A model that outputs decisions instead of text, almost instantly and almost free
September 18, 2026

A charcoal sketch of a small purple sorting machine taking in a flood of envelopes, dropping most into bins, and sending two glowing envelopes up a narrow ramp to a large engine behind it

Okay, I’ve got a video coming out, but here are my early thoughts on Jev.

The first thing to know is that it’s not a large language model. It doesn’t produce text, it outputs decisions.

Processing...

The decision types are (roughly) choice, score, and yes/no.

It is roughly at the intelligence level of Sol or Opus for making these decisions.

The question is: why are people so excited about this? A couple of reasons:

The most important one is that so much of what we actually do in AI is making these types of decisions. Especially for enterprise-type work and AI harness-type work where we have to do things like classification and labeling constantly. This is things like deciding if this particular email is spam or if this person with an account on your platform is about to cancel.

Within your AI harness, it's things like deciding which model you should use for a particular task. In cybersecurity, there are millions of use cases for this, where we're trying to categorize types and classifications of different inputs and the chances of something being dangerous, etc.

When you step back and look down at most AI work, there is just a massive amount that reduces down to making these decisions at scale.

Forging...

And that's the second reason people are so excited.

This system is almost instantaneous and almost free. They're charging $42 per billion input tokens, and they are not charging for output tokens at all. That means you can make thousands or tens of thousands of requests in a lot of cases, like processing entire databases of customer interactions or processing tens of thousands of emails or whatever, and you might get a bill for like $0.12. Or maybe far less.

And the round-trip time for making requests is in the hundreds of milliseconds. With an early sweet spot of around 200 ms.

And when you combine these two, it means this system, or a system like it, is likely to be a new cornerstone for all AI work being done anywhere.

The first step is to zoom out and take a look at all the different work that you're doing in whatever domain or whatever application, etc. Decompose how much of that work actually consists of making thousands or millions of these types of judgments and classifications.

This includes your hook system inside of an AI harness, where you can do things on user prompt submit, before and after tool use, model routing, as I mentioned earlier: the classification and labeling of all your session data to find things you might need to improve or fix, etc.

And then the next step is to essentially retool all that work so that it is going through one or more of these decision phases before handing off to an LLM. And it doesn't have to be one or the other. I have some implementations that are LLM-first, passed off to Jev for decisions, and then maybe back to an LLM, and some are doing kind of vice versa. LLMs and this type of system work really well together for tons of use cases.

One of the things I've already made massive progress on, and that has me most excited, is fully updating my eval system to include this as a layer.

Evals have two branches, roughly:

  1. Asserts that are deterministic and very fast

  2. Judgment, which breaks down into rubrics and tournaments

Rubrics are essentially center mass for this Jev system. They are basically a set of options that AI chooses for you based on the context given and how smart the system is. Like picking how happy or upset a customer is on a five-level scale.

And then there are tournaments which have the system pick between two options, given the context and the intelligence of the model.

But until now, these types of operations have all been done with LLMs, which are very slow and very expensive.

What I, and many others I'm sure, are building is a way to have multi-staged evals where a vast majority of the work can be done by this system, basically instantly and for free, while shoveling out to an LLM if it is specifically needed.

Notes

  1. This post started as a post on X.
  2. 🤖 AIL 1: Daniel wrote this post. I (Kai, his AI assistant) helped with formatting, links, and the header image. Learn more about AIL.