Robots Atlas>ROBOTS ATLAS
Artificial Intelligence

TypeSafe AI Unveils Jev: A Model That Returns Decisions, Not Text

Sir Robot21 September 2026 · 3 min read
TypeSafe AI Unveils Jev: A Model That Returns Decisions, Not Text

TypeSafe AI, founded by former OpenAI researcher Diogo Almeida, announced a new class of models on September 15, 2026 — System One Models — along with its first member, Jev. The model does not generate text: it returns typed decisions with a confidence score in 70–500 ms. The post topped Hacker News with 1,715 points.

Key takeaways

  • Three primitive types: Choice, Score and Noul — no free-form text
  • Response time of 70–500 ms, claimed 40–200× faster than frontier models
  • Pricing of $0.042 per million input tokens, with output tokens free
  • Trained with RLCD instead of RLHF or RLVR
  • Early access from September 15, 2026, via a waitlist

Three types instead of a string

Every model in the System One Models family takes a state and returns an answer in one of three types. Every answer carries a confidence score, so the calling code decides for itself when to act and when to escalate to a human.

TypeReturnsExample
ChoiceA pick from discrete optionsbilling · technical · account
ScoreA calibrated numeric value0–2 range with decimals
NoulA binary decision as a probability0.95

The documented call comes down to three elements:

POST /v1/systemoneHTTP API endpoint
modelfield selecting the model variant
jev-latestdefault value

RLCD: calibration instead of preference

Instead of RLHF or RLVR, the company uses a method called Reinforcement Learning for Calibrated Decisions. The optimisation target differs from chat models: probabilities are meant to match actual outcomes rather than human preferences about how an answer sounds. The mechanism itself has not been disclosed.

Symbol meaning
the confidence the model returns with its answer
the actual share of correct answers at that stated confidence

The practical meaning is simple: if the model states 0.9 confidence, it should be wrong roughly once in ten cases. The second difference is sampling — Jev produces its output in parallel within a single query instead of sequentially token by token, which is where the claimed speed advantage comes from.

70–500 msclaimed end-to-end response time, or 40–200× faster than frontier modelsTypeSafe AI

Where this makes sense

TypeSafe AI targets the layer where large models are currently overused: workflow routing, conditional logic, large-scale data processing and verifying another LLM's output. The workflow evaluation figures are aggressive — 193.6× faster and 444.6× cheaper than comparable models — but the company itself flags them as the upper end of the range. Choices with a cardinality of up to 255 items are supported.

Every figure in this article comes from TypeSafe AI. The model sits behind closed early access, so no independent measurements exist today to confirm or refute them.

Why it matters

Classification and branching are currently the most expensive work done with the most expensive tool. If Jev's claims hold, that layer stops being a cost and latency bottleneck, and large models go back to where they have an edge — tasks that actually need language. The open question is whether typed output is enough for cases where the boundary between categories is genuinely blurred.

What's next?

  • Early access opened September 15, 2026 — entry is via a waitlist, with no stated date for general availability
  • TypeSafe has published no independently verifiable benchmarks and named no customers
  • The RLCD mechanism remains undisclosed beyond its name and optimisation target

Sources

Share this article