On Vercel AI Gateway since Sep 16, 2026 · TypeSafe AI · tested Sep 20

Jev AI: The Fastest-Adopted AI Model on Vercel

Jev AI just became the fastest-adopted AI model in the history of Vercel's AI Gateway.

In its first day, close to 13 percent of paying teams were using it, which is double the GPT-5.6 family.

And Jev can't write a single sentence.

It makes the small decisions inside your AI agents in about half a second, and it tells you how sure it is.

I plugged it into my own business this morning and ran over a thousand real decisions for less than one cent.

Stick with me, because I'll show you the three walls I hit setting it up, and the one trick that made the free tier enough.

A model that can't write, adopted faster than any model on the gatewayYour situationan email, a lead,a pageYour questionswith set answersJev decidesabout half a second+ how sure it isa number youcan act onOne key. One new call. Typed answers back.
The actual sources ↓
§1What Vercel reported

Close to 13% of paying teams in the first day

Share of paying AI Gateway teams using it, 24 hours after launchJev · TypeSafe AI~13% of paid teamsGPT-5.6 familyabout half of thatFable 5.1under a sixth of thatEvery other recent launch stayed under 7% after a full day
Tweet · the announcement

Vercel's own numbers

Vercel runs the gateway, so they can see which models teams switch on. In Jev's first day it reached about 13% of teams — double the GPT-5.6 family and six times Fable 5.1.

numbers: Vercel blog · “Jev is the fastest-adopted model in AI Gateway history” · Sep 18, 2026
§2The problem

The One-Word Problem

Most decisions inside an agent are tinyWRITING MODELsecondsreads your whole promptthinks out loudwrites a paragraphyou dig the answer outyou pay for every wordWHAT YOU NEEDEDone wordyes or nowhich one of thesehow strong, 0 to 3and how sureready for your softwareA big writing model is a slow way to get one word
THINKING IT? "My agents already make decisions fine."

They do. They also spend seconds and tokens writing a paragraph every time, when the answer was one word.

Inside one agent run there can be dozens of those small decisions.

§3The odd part

Jev can't write a single sentence

Jev's model card on Vercel AI Gateway0max output tokens32Kcontext window$0.042per million tokens infreeoutputListed as type “evaluation” — the first of its kind on the gateway
read from the gateway's own model list with my key · /v1/models · typesafe-ai/jev
Max output tokens: zero.
§4What it does instead

You hand it a situation and questions. It hands back typed answers.

One request, three kinds of answerChoice — pick one of theseScore — where on my scaleBoolean — chance it's trueYour situationan email, a lead,a page, a draftEvery answer comes with a probability
§5My first real call

One email in. Three answers back in about half a second.

real run through Vercel AI Gateway · my machine · replayed at reading pace

What you're watching: my first real call — a lead email goes in, and Jev routes it, scores how urgent it is, and says how likely it is to be a qualified lead.

route → seo_sales · 1.00urgency → 2.23 / 3qualified → 0.86
§6The number that matters

It tells you how sure it is — so you can draw a line

One way to use the probability0.90 and uplet the agent act0.60 to 0.90act, and log itunder 0.60send it to a personNear 0.50 means it honestly doesn't know
in my 300-search test, 81 answers came back under 0.60
§7What's actually new

Vercel added a new kind of call for it

jev.mts — the whole call
import { experimental_evaluate as evaluate } from 'ai';

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state: 'Hi Julian, we run a 12-person dental group in Leeds...',
  questions: {
    route:     { type: 'choice',  instructions: 'Which team should handle this?', criteria: {...} },
    urgency:   { type: 'score',   instructions: 'How fast does this need a reply?', criteria: [...] },
    qualified: { type: 'boolean', instructions: 'Is this a qualified lead?' },
  },
});
generateText → wordsevaluate → decisionsAI SDK 7.0.105 and up
source: Vercel changelog · “TypeSafe AI's Jev now available on AI Gateway” · Sep 16, 2026
§8The gateway, in plain words

One key. 375 models. No markup.

What a gateway isOpenAI · the GPT-5.6 familyAnthropic · Fable, Sonnet, HaikuGoogle, DeepSeek, xAI and moreTypeSafe AI · JevOne API keyVercel AI Gatewayone invoiceSwapping a model is a one-line change
375 models counted from the gateway's model list with my key · “no markup” is Vercel's pricing page
§9 Quick word

Get Jev making decisions inside your business

Inside the AI Profit Boardroom, the agent operating system comes as a zip file. Jev is the decision layer we're adding to it, and the calls are where we set it up with you.

The Agent OS zip file — plug in your Claude, your Hermes and your OpenClaw, all in one dashboard with one shared memory
The Jev decision layer, walked through — sorting your leads, routing your inbox and checking content before it goes out
Four coaching calls every week — bring your own Jev or Vercel setup and ask live
Daily tutorials — step-by-step videos and guides as tools like Jev land
A 30-day roadmap — your first agent running and pointed at bringing in leads and customers
3,900+ business owners already inside — plenty had never used AI before they joined
Join the AI Profit Boardroom →Inside the AI Profit Boardroom · skool.com/ai-profit-lab
4 live calls a week · daily tutorials · used in 38 countries
§10Wall one

The free credit needs a card first

real session on my machine · replayed at reading pace

What you're watching: the real setup session, in order — the card error, the blocked model, then Jev answering.

before: customer_verification_requiredafter: $5 credit unlocked
§11Wall two

Vercel's quick-start code is the wrong call for Jev

Two different callsTHE QUICK STARTgenerateTextasks a model to writereturns a block of textJev has zero output tokensso there is nothing to returnWHAT JEV NEEDSevaluatetakes a situationtakes typed questionsreturns typed answerswith a probability on eachIf you copy the quick start and swap in Jev, it won't work
§12Wall three

The free tier has limits — and Jev is inside them

What my free-tier key was allowed$5free credit30requests a minute250Ktokens a minuteGPT-5.6 Sol came back 403 on free credit. Jev answered.
read from the gateway's own response headers and error messages
§13How fast is it, really?

About 550 milliseconds per request from my desk

The same lead email, sent again and againrun 1936 msrun 2578 msrun 3481 msrun 4516 msrun 5449 msrun 6450 msrun 7802 msrun 8818 msMedian 550 ms · fastest 449 ms
12 runs · one of them took 33 seconds while the gateway retried a busy provider — it's left out of the chart, not out of the story
§14Ask more, wait the same

Twelve questions took the same time as one

real run through Vercel AI Gateway · my machine · replayed at reading pace

What you're watching: one question against twelve questions about the same email — median of six runs each.

1 question → 563 ms12 questions → 517 ms
Twelve answers came back as fast as one.
§15Packing

So you pack ten items into every request

How 300 items fit through a 30-a-minute door300 searchesfrom Search Consolepacks of 1020 questions each30 requestsinside the limit600 decisions19s of model timePack the questions, and the limit stops mattering
§16Real job one

300 real Google searches, sorted by what the person wants

real run through Vercel AI Gateway · my machine · replayed at reading pace

What you're watching: 300 real searches from my Search Console being sorted into how-to, brand, review, what-is and news — a sample of 80 shown.

300 searches600 decisions19.3s model time$0.0025
§17What came back

98 how-to, 96 brand, 78 review

What 300 searchers wantedhow-to98brand96review78what is it24news481 of the 300 came back under 0.60 sure
“ai profit boardroom review” → 0.69“ai profit boardroom reviews” → 0.66“hermes agent revenue kit” → 0.66
closest-to-joining scores · none crossed 0.70
§18Real job two

All 388 guides on my site, sorted into topic hubs

real run through Vercel AI Gateway · my machine · replayed at reading pace

What you're watching: every page title on agentos.guide being sorted into a topic hub — a sample of 80 shown, 388 in the full run.

388 guides39 requests26.3s model time$0.0032
§19A crash worth knowing about

When two options tie, the SDK throws an error

the error, first run
AI_InvalidResponseDataError:
  Question "hub_9" did not select a highest-probability option.
What happened on my first hub runAn exact tietwo hubs equalSDK throwswhole pack failsCatch itre-ask one by oneA tie is Jev telling you it can't pick
§20The total

1,102 decisions for well under one cent

Everything I ran this morning1,102decisions146,948tokens in$0.0062total cost$5.00balance still showingMy credit balance still reads five dollars
tokens counted from every response · price from the model card · balance from /v1/credits
§21Against writing models

Same ten searches. Four models. My own test.

my own test · Jev via Vercel AI Gateway · the writing models via OpenRouter · median of 3 runs

What you're watching: the same pack of ten searches sent to Jev, Claude Haiku 4.5, GPT-5.6 Luna and Claude Sonnet 5 — time first, then cost.

Time for the same 20 decisionsJev0.6sClaude Haiku 4.52.2sGPT-5.6 Luna7.1sClaude Sonnet 58.2sSame job, same ten searches
§22The headline numbers

TypeSafe says up to 194×. I got 4× to 82×.

Their best case against my small jobTypeSafe · speed, up to193.6×My test · speed4× to 13×TypeSafe · cost, up to444.6×My test · cost10× to 82דUp to” is doing a lot of work — and the gap is still big
193.6× and 444.6× are TypeSafe AI's own workflow evaluations, quoted by Vercel
“Up to” is doing a lot of work. The gap is still big.
§23Why it spread in a day

A small model with one job, behind a door teams already use

What trying Jev costs a teamAlready on the gatewaykey, logs, budgetChange one linethe model nameTest one decisiona fraction of a centKeep it, or undo itminutes either wayVercel's own words: the next test is whether early adoption lasts
"Its first-day adoption was unmatched among recent launches; the next test is whether that early adoption lasts."— Vercel blog · Sep 18, 2026
§24Where it sits in an agent

The four jobs Vercel lists for it

Where a decision model sits inside an agentPick the next stepwhich tool or subagentKeep going?continue · retry · ask · stopScore the riskbefore an actionCheck the outputguardrails · human reviewThe writing model keeps writing. The small decisions move out.
the four uses are from Vercel's launch post
§25In my own setup

The three jobs I tested it on today

Where it's going in my businessAgency lead inbox → who handles it, how fastSearch Console → what page to writeagentos.guide → which hub lists the guideJevthrough the gatewayone keyAll three are sorting jobs I was doing by hand or with a big model
§26The honest limits

What Jev won't do for you

Six limits I hit or read aboutText onlyno images, no audioCan't explain itselfzero output tokensTyped ≠ correcttest on known answers32K contextpack, don't dumpBusy right now429s and slow retriesTies throw errorscatch and re-askVercel's own guide says to test against known outcomes before you automate
THINKING IT? "If it can't explain itself, how do I trust it?"

You test it on examples where you already know the answer, then you set your line.

Anything under the line still comes to you.

§27A belief worth dropping

“This is for developers, and I can't code”

Wrong: This is a developer tool, and I'm not technical.
Right: The setup was a key, one install and a fifteen-line file, and my coding agent wrote all of it. The part that needs you is the questions — and you already know those.
Who does whatYouknow your businessWrite the questionsplain EnglishYour agentwrites the fileJevanswers themThe questions are the skill
§28A second belief

“I'll wait until it settles down”

Wrong: I'll wait until the tools stop changing.
Right: Jev went from launch to 13% of paying gateway teams in 24 hours. The tools aren't going to slow down, and trying this one cost me under a cent.
Jev's first day on the gatewayHour 12passed every other launchHour 18a tenth of all paid teamsHour 24close to 13%On the gateway Wednesday. In front by Thursday.
§29A third belief

“Running AI across my whole business costs too much

Wrong: Running AI on every lead, every email and every page would cost a fortune.
Right: 1,102 decisions cost $0.0062. The expensive part was using a writing model for jobs that only needed a decision.
Cost of one pack of 20 decisionsClaude Sonnet 5$0.0069Claude Haiku 4.5$0.0012GPT-5.6 Luna$0.0008Jev$0.00008Same job, my own test
Don't take my word for it

Members post their wins every day — agency owners, ecom founders, course creators, solo operators across 38 countries.

Read the 158-page wins doc →
At that price you can afford to check everything.
§30If you handle client data

Two settings worth knowing about

Built into the gatewayZero data retentionper request, on the gatewayBudgetscap a key, a project or a personJev's card lists zero data retention and no training across its providers
sources: Vercel changelog · AI Gateway pricing docs · Jev model card
§31Where this is heading

More small models, each with one job

From one model to a small team of themOne giant modeldoes everythingA writerfor the wordsA deciderfor the choicesA gatewayto swap them fastJev is the first decision model on the gateway. It won't be the last.
§32 Your move

Set up Jev and the Agent OS — with help

You saw the three jobs I tested Jev on this morning. Inside the AI Profit Boardroom we set up your version of those, on your leads, your inbox and your content.

The Agent OS as a zip file — Claude, Hermes and OpenClaw in one dashboard with shared memory, updated daily as tools like Jev land
The Jev walkthrough — the gateway key, the evaluate call, packing, and where to draw your confidence line
Four coaching calls every week — ask which of your decisions should go to Jev and which should still come to you
Daily tutorials — lead sorting, inbox routing and SEO keyword sorting, step by step
A 30-day roadmap — so you know what to build first to bring in leads and customers
Prompts for everything — including question sets you can paste straight into Jev
A member map — meet people near you building the same thing, with someone online around the clock
Join the AI Profit Boardroom →Inside the AI Profit Boardroom · skool.com/ai-profit-lab
Start with the one decision you make fifty times a day
§33The part that's still yours

Jev answers. You decide what's worth asking.

What stays with youYoupick the questionsYoudraw the lineJevanswers, all dayYousee only the unsure onesKnowing your own business is the skill that's left