Skip to content
Made with Jev

The short version

What is Jev?

Jev is the first System One model from TypeSafe AI, released on 15 September 2026. It takes unstructured state and a set of typed questions, and returns typed answers with probabilities and a confidence score. Think of it as a frontier-intelligence function call.

Diogo Almeida

@CompleteSkeptic

After co-inventing ChatGPT, I kept asking myself: why have superhuman chat models not led to AGI? I’ve spent the last 2 years in stealth building a new way to train models (RLCD), and a new type of frontier AI model that we are releasing today: Jev
Sep 15, 2026Read the post

How a call is shaped

Every call has two parts: the state, which is the context to judge, and the questions you want answered about it. Questions come in three kinds and can be mixed in one call. Each is evaluated in parallel against the same state, so asking sixty questions costs about what asking one does.

TypeAsksReturns
ChoiceWhich of these options?The chosen option, a probability for each, and a confidence
ScoreWhere on this scale?A level, a probability for each level, and a confidence
NoulIs this statement true?A probability between 0 and 1

The probabilities say which option wins. The confidence summarises how concentrated that distribution is, and that is the number your code acts on: handle the confident cases automatically, send the rest to a person or to a larger model.

Speed, cost and accuracy

Input costs $0.042 per million tokens and output is not charged. Responses land in 70 to 500 milliseconds. TypeSafe's own workflow evals put it level with a mid-sized reasoning model on accuracy while being about two orders of magnitude cheaper per case.

Averages across four workflows, in workflow mode.
ModelMean accuracyCost per caseTime per case
Opus 573.1%$0.176137.8 s
Terra67.9%$0.030410.1 s
Sonnet 567.8%$0.117478.1 s
Jev67.8%$0.00040.4 s
Haiku 4.553.6%$0.019512.5 s

Source: TypeSafe workflow evals. Read the accuracy column carefully: the reference answers are the average of two large reasoning models, not a human-labelled set, so 67.8% means “agrees with those two 67.8% of the time”.

Time per case

Lower is better. Jev’s bar is a sliver at this scale.

  • Sonnet 578.1 s
  • Opus 537.8 s
  • Haiku 4.512.5 s
  • Terra10.1 s
  • Jev0.4 s

Cost per case

Lower is better. Same four workflows, same runs.

  • Opus 5$0.1761
  • Sonnet 5$0.1174
  • Terra$0.0304
  • Haiku 4.5$0.0195
  • Jev$0.0004

Where it fits

The projects in this directory cluster around four patterns: picking the next action in an agent loop, sorting a queue into buckets, scoring every item in a corpus, and gating a risky step behind a confidence threshold. All four are decisions a system makes thousands of times, where the cost of a slow answer is the whole problem.

Where it does not fit

  • It writes nothing. Drafting, summarising and code generation stay with an LLM.
  • The answer space is yours to define. A Choice takes at most 255 options.
  • Text only, for now: strings, JSON objects and lists of strings. No images, audio or video.
  • “Cannot hallucinate” means the shape is guaranteed, not the content. Measure calibration on your own data before you set a threshold.

Common questions

What is a System One model?
A model class trained for fast, bounded decisions that software consumes directly, named after the fast, intuitive System 1 in Daniel Kahneman’s Thinking, Fast and Slow. It does not write prose, generate code or explain its reasoning.
Can Jev hallucinate?
It cannot return a value outside the type you asked for, so a broken JSON payload or an invented field is impossible. A well-typed answer can still be the wrong answer, which is what the confidence score is for.
What does Jev cost?
TypeSafe prices input at $0.042 per million tokens and does not charge for output. End-to-end response time is 70 to 500 milliseconds.
Does Jev replace an LLM?
No. It replaces the small, repeated decisions inside a system — classify, route, score, filter, gate a tool call — while a larger model still handles anything that has to be written.

Made with Jev is independent and not affiliated with TypeSafe AI.