Not every screw requires the same screwdriver, and not every problem requires the biggest AI. -- YNOT!
For the last few years, the AI industry has largely been obsessed with one question:
How do we make AI bigger, smarter and capable of doing more things?
ChatGPT, Claude, Gemini, Qwen and other Large Language Models can write, reason, summarize, research, program, translate, analyze and carry on a conversation.
Then along comes Jev with a very different idea:
What if the AI didn’t need to do all of those things?
What if you just needed it to make a decision?
That simple idea could turn out to be very important.
THE BUS AND THE MOTORCYCLE
“You wouldn’t send a bus to deliver an envelope. Why send a massive AI to answer yes or no?”
Imagine you have two vehicles sitting outside.
One is a large city bus.
The other is a motorcycle.
The bus can carry 50 people, luggage and all kinds of cargo. It can handle many different jobs.
The motorcycle can’t.
But suppose your job is simply to deliver an envelope five miles across town.
Would you start the bus, fuel it, drive it through traffic and find somewhere to park it?
Or would you jump on the motorcycle?
The motorcycle isn’t “better” than the bus.
It is better for that particular job.
That’s essentially the idea behind Jev.
A large general-purpose AI model is the bus.
Jev is the motorcycle.
Jev doesn’t want to write you a 2,000-word essay.
It doesn’t want to create a poem.
It doesn’t want to program your website.
It doesn’t need to have a philosophical discussion with you.
Instead, you might give Jev an email and ask:
What is this?
- Customer complaint
- Sales opportunity
- Technical support
- Spam
- Accounting
- Other
Jev reads the complicated language and chooses.
That’s it.
And that turns out to be enormously useful.
SO WHAT EXACTLY IS JEV?
Jev was introduced on September 15, 2026 by TypeSafe AI, a San Francisco AI company led by founder Diogo Almeida, along with co-founders Sasha Sheng and Erik Gafni.
Almeida previously worked at OpenAI and Google Brain and worked on techniques connected to instruction-following models that eventually helped lead to ChatGPT.
TypeSafe calls Jev its first System One Model.
The name comes from the concept of “System 1” thinking — fast decisions rather than slow, deliberate reasoning.
And Jev itself is named after economist William Stanley Jevons, whose famous Jevons paradox observed that making a resource more efficient can actually cause people to use more of it.
TypeSafe’s idea is simple:
Make machine intelligence cheap and fast enough, and suddenly we can afford to put intelligence everywhere.
JEV DOESN’T GENERATE WORDS — IT MAKES DECISIONS
This is the big difference.
A traditional LLM produces strings of text.
Ask ChatGPT a question and it starts generating:
word… after word… after word…
Jev isn’t designed around producing an open-ended answer.
Instead, the programmer defines the possible outputs.
For example:
How urgent is this support request?
- Low
- Normal
- High
- Critical
Or:
Should this action proceed?
- Yes
- No
- Ask a human
Jev then chooses among those predefined possibilities and reports its confidence.
You could think of it as an extremely sophisticated multiple-choice machine.
That may initially sound less impressive than ChatGPT.
In software, however, it can be incredibly powerful.
Programs don’t always need another paragraph of English.
Frequently they need:
YES or NO.
A, B, C or D.
0 through 5.
Proceed, Stop or Ask Someone.
WE NEED TO STOP THINKING OF “AI” AS ONE THING
I think this is one of the bigger lessons here.
We already have different types of AI, just as we have different kinds of vehicles.
GENERAL-PURPOSE AI
These are models such as ChatGPT, Claude, Gemini and Qwen.
They can perform enormous numbers of different jobs.
Writing.
Programming.
Research.
Analysis.
Conversation.
Planning.
Reasoning.
They’re the buses, SUVs and trucks of AI.
Very versatile.
But versatility costs computing power, time and money.
DECISION AI
This is where Jev fits.
Give it complicated information.
Give it a defined set of possible decisions.
Let it choose.
Instead of asking a massive AI to perform every little decision inside a computer system, we can potentially hand thousands or millions of those small decisions to something specifically designed for the job.
IMAGE AI
Then we have models specifically designed for images.
They aren’t trying to balance your accounting books or manage a server.
They’re optimized to understand or generate pixels.
Image generation models can therefore devote their architecture and training toward things such as composition, lighting, characters, texture and visual consistency.
PROGRAMMING AI
We are also seeing models increasingly optimized around programming.
They understand repositories, source code, debugging, tests, APIs and software-development workflows better than a generic conversational model may.
WRITING AI
The same applies to writing.
A model can be trained or tuned specifically around storytelling, editing, style, dialogue or long-form prose rather than spending part of its capacity learning to be a programmer, mathematician and network administrator at the same time.
And we’re going to see more of this.
Medical AI.
Legal AI.
Financial AI.
Engineering AI.
Scientific AI.
Classification AI.
Different engines for different jobs.
WHERE COULD YOU ACTUALLY USE JEV?
Here’s where this starts getting interesting.
WORDPRESS
Suppose you publish an article.
Instead of somebody manually choosing categories, Jev reads the article and selects from:
- Politics
- Technology
- Business
- Science
- Health
- Entertainment
- Local News
- Opinion
It could also determine whether secondary categories apply.
You could potentially classify thousands of old WordPress articles for very little cost.
Read every incoming email and determine:
- Needs immediate response
- Important but not urgent
- Sales opportunity
- Customer problem
- Accounting
- Newsletter
- Spam
Only the important ones need to reach a more expensive AI.
NEWS
Imagine processing 100,000 news stories.
Jev could rapidly determine:
- Country
- Subject
- Importance
- Market relevance
- Political relevance
- Local relevance
- Possible duplicate
- Requires deeper investigation
Then perhaps only 2,000 stories need to be examined by an expensive reasoning model.
CUSTOMER SUPPORT
A support ticket could automatically be classified by department, urgency and risk of losing the customer.
AI AGENTS
This may be one of the most interesting applications.
An AI coding agent proposes:
DELETE DATABASE
Before the command is executed, another system asks Jev:
- Is this potentially destructive?
- Is production affected?
- Should a human approve this?
- How risky is this operation?
Jev becomes another checkpoint inside an AI system.
DOCUMENT PROCESSING
Invoices.
Contracts.
Insurance forms.
Applications.
Purchase orders.
Construction documentation.
Tax documents.
Instead of asking an enormous LLM to explain every document, Jev could classify what the document is and determine what should happen next.
THE REALLY INTERESTING ARCHITECTURE
I don’t think the future is:
Jev replaces ChatGPT.
I think it looks more like this:
NORMAL COMPUTER CODE
↓
JEV MAKES FAST SEMANTIC DECISIONS
↓
POWERFUL AI HANDLES THE DIFFICULT CASES
↓
A HUMAN HANDLES THE EXCEPTIONS
That means we stop using our most expensive intelligence for every decision.
If ordinary software knows the answer, use ordinary software.
If something requires interpreting language and selecting among known choices, use something like Jev.
If the problem requires reasoning, writing, invention or planning, use a powerful LLM.
If the consequences are important enough or confidence is too low, ask a human.
Right tool. Right job.
THERE ARE LIMITATIONS
Jev is not magic.
And this part matters.
First, Jev can still be wrong.
TypeSafe talks about Jev producing type-safe outputs and avoiding hallucinated outputs.
That does NOT mean every decision is automatically correct.
If you tell Jev there are four possible categories, it won’t suddenly invent category number five.
But it could still select the wrong one.
That’s why confidence matters.
You might program your system like this:
95%+ confidence: automatically proceed.
75–95%: proceed only for low-risk tasks.
50–75%: send to a larger AI.
Below 50%: ask a human.
Those numbers are only examples. Every application should be tested.
Second, Jev isn’t intended to replace open-ended generation.
Ask:
“Write a funny story about a computer technician fighting an alien.”
That’s a job for a generative model.
Ask:
“Is this story comedy, science fiction, drama or horror?”
Now you’re speaking Jev’s language.
Third, Jev currently comes from TypeSafe as a hosted service. If you’re dealing with confidential information, medical records, internal company material or personal archives, you need to consider where that data is being processed before automatically sending everything to an outside API.
WHY I THINK JEV MATTERS
The interesting thing about Jev isn’t necessarily that classification is new.
It isn’t.
We’ve had classifiers, neural networks, BERT models, rules engines, regular expressions and machine-learning classification for years.
What’s potentially different is making a general-purpose language-aware classifier cheap, fast and easy enough that developers can sprinkle these decisions throughout ordinary software.
That could change the economics of AI.
Today you might ask:
“Is this decision important enough to justify calling an AI?”
Tomorrow the question may become:
“Why WOULDN’T I classify this?”
And that is where the Jevons-paradox name starts making sense.
Make intelligence substantially cheaper and we probably won’t use less intelligence.
We’ll put intelligence into things we never previously considered worth making intelligent.
Every email.
Every document.
Every support ticket.
Every article.
Every transaction.
Every AI-agent action.
Every row of a database.
Every step in a workflow.
THE BUS ISN’T GOING AWAY
And neither are ChatGPT, Claude, Gemini, Qwen or the next generation of giant AI models.
We’re still going to need the bus.
Sometimes we need to move 50 people.
Sometimes we have a huge complicated problem and need all that capacity.
But tomorrow morning, when all we’re trying to do is deliver one envelope across town…
maybe we don’t need to start the bus.
Maybe we take the motorcycle.
And that may be the most important thing Jev teaches us:
The future of AI may not simply be one gigantic AI that does everything.
It may be an ecosystem of specialized intelligences — some enormous, some tiny, some creative, some analytical and some doing nothing more than making one very fast decision.
And the companies that learn which AI to use for which job may have a substantial advantage over those that simply throw the biggest model they can find at every problem.
The question isn’t whether Jev can replace your AI.
The better question is:
How many jobs are you currently giving to the bus that could be done by a motorcycle?
Check out:
https://typesafe.ai/
https://typesafe.ai/blog/introducing-system-one-models-and-jev
Open Jev???
#AI #Jev #ArtificialIntelligence #Automation #LLM #TypeSafe #Technology
© 2026 insearchofyourpassions.com - Some Rights Reserve - This website and its content are the property of YNOT. This work is licensed under a Creative Commons Attribution 4.0 International License. You are free to share and adapt the material for any purpose, even commercially, as long as you give appropriate credit, provide a link to the license, and indicate if changes were made.







