cd /news/artificial-intelligence/jev-vs-laya-the-same-ai-idea-one-clo… · home topics artificial-intelligence article
[ARTICLE · art-136752] src=dev.to ↗ pub= topic=artificial-intelligence verified=true sentiment=· neutral

Jev vs Laya: The Same AI Idea, One Closed and One Open

TypeSafe AI launched Jev, a hosted "System One" decision model, on September 15, 2026, and Convai Innovations released Laya, an Apache 2.0 open-weight alternative, weeks later. Both skip text generation to return typed labels with probabilities, but Jev scores 0.870 versus Laya's 0.425 on the 77-label Banking77 benchmark and shows better calibration (0.144 vs 0.213 expected calibration error). Laya's creator, who published related reinforcement-learning work in March 2025, argues Jev arrived at the same idea later and closed it, an accusation TypeSafe has not publicly addressed.

by read4 min views1 publishedSep 22, 2026

A new category of AI model landed this month, and it arrived twice at once. First came Jev, a hosted product from TypeSafe AI. Weeks later, an open-source model called Laya appeared, doing the same job and claiming to be faster. If you route support tickets, filter spam, or score risk with a large language model today, this comparison matters to your bill.

Both models come from the same observation: most production AI pipelines do not need text generation. They need a label. Your LLM burns 500 milliseconds to 2 seconds streaming tokens like "The correct category is: billing" so your code can parse the label back out. A decision model skips all of that. State goes in, a typed answer with a probability comes out. No prose, no parsing, no hallucinated sentences.

TypeSafe calls this a System One model, after the fast, instinctive half of the brain. The name fits. Here is how the two contenders actually compare.

The interfaces are nearly identical. Both models accept three types of questions:

billing, technical, or other, with a probability over every option. Neither model generates text, so neither can produce a malformed answer. That is what "zero hallucinations" means here: the output always matches your schema. A wrong classification is still possible, which is why both vendors recommend escalating to a human when confidence drops below roughly 0.3 to 0.5.

You also feed both models a batch of questions at once, and each question is evaluated independently. This is not a nicety. Batching is the intended usage pattern.

Jev launched September 15, 2026, from TypeSafe AI, founded by Diogo Almeida, a co-creator of ChatGPT. You call it over an API at $0.042 per million input tokens (output tokens are free), with typical responses around 150 milliseconds.

Its clearest win is option count. On the Banking77 benchmark, which requires picking from 77 intent labels, Jev scored 0.870 while Laya managed 0.425. The gap is architectural, not a matter of tuning: Laya shares a fixed token budget of roughly 192 to 256 tokens across all candidate options, so past about 20 choices each option gets only a few tokens of representation. Keep your choice schemas small and this never bites you. Need 50 categories? Jev handles it today; with Laya you would need a coarse-to-fine hierarchy.

Jev is also calibrated out of the box. On the typed-decisions benchmark its expected calibration error is 0.144 versus Laya's 0.213, meaning its probabilities can be trusted as probabilities sooner. And there is nothing to host: no GPU, no model files, no cold starts.

Laya, from Convai Innovations, is Apache 2.0 licensed with weights on Hugging Face. It is a 421M-parameter encoder (ModernBERT-large, with a 322M multilingual variant covering 100+ languages) that runs on your own hardware.

There is also a story behind Laya. Its creator published a reinforcement-learning approach to probability prediction in March 2025 (arXiv:2503.23303) and argues Jev arrived at the same idea later and closed. TypeSafe has not responded publicly. The documented facts are that his early work is real and predates Jev, while the Laya model page itself was created after Jev's launch. Simultaneous invention is plausible; copying is an accusation, not a proven fact. For your purchase decision it matters less than the practical differences below.

Almost every number in public circulation is self-reported, and the two sides' claims cut against each other. Read them carefully:

The honest summary: Laya wins when the task matches its training or after you fine-tune it. Jev wins out of the box, on wide option sets, and on calibration.

Laya's English checkpoint scores 0.080 accuracy on Bengali script while reporting 0.945 confidence. The model cannot read the script, and it has no idea it cannot read it. Confidence gating will not save you, because the confidence itself is wrong. Laya ships a Router that detects the Unicode script and dispatches to the right checkpoint, including a multilingual one. Use it, or route by script yourself before inference. Any decision model tuned on Latin-script data will have some version of this failure mode.

Whichever you pick, start with a high-volume but reversible task. Keep your current process in shadow mode, log the model version, the full probability distribution, and the actual outcomes, then tune thresholds from real data before you let the model decide anything on its own.

The System One category is real, and both implementations prove the thesis: a huge share of "AI pipeline" work is classification wearing a generative model as a costume. Now there are two serious ways to take the costume off.

── more in #artificial-intelligence 4 stories · sorted by recency
── more on @typesafe ai 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/jev-vs-laya-the-same…] indexed:0 read:4min 2026-09-22 ·