Jev is the first System One model — it doesn’t write text, it decides. Software hands it a state and typed questions; it answers every question in one parallel pass, in milliseconds. In the days since early access opened on , builders have wired it into an extraordinary range of experiments. JevMade is where you browse them, get inspired, and find your next idea.
… vetted experiments… makers3 primitives70–500ms per call
illustrative example of the API shape — not a recorded run
Jev, briefly
A decision model, not a chatbot.
A chat model generates text token by token and hopes you parse it. Jev never generates a word. Your code sends the state of the world plus typed questions; Jev returns every answer in one parallel pass — typed values with calibrated probabilities and a confidence score your code can trust. About 70–500 ms end to end, $0.042 per million input tokens, output free. Trained with what TypeSafe calls Reinforcement Learning for Calibrated Decisions.
choice Pick one of these.
You define the options. Jev returns the chosen option, a probability for every option, and a confidence. The workhorse of routing, agents, and games — the answer space is always legal, so there is nothing to parse and nothing to hallucinate.
score Rate this on a rubric.
You describe ordered levels — say trivial / normal / critical. Jev returns the level, the probability of each, and a confidence. Scores turn fuzzy judgment (“how severe is this log line?”) into a number-free decision your code can branch on.
noul Is this statement true?
You assert a statement; Jev returns the probability that it is true — a noul. Moderation, verification, guardrails, “does this diff actually fix the bug?”: one question, one calibrated probability.
Official material lives at typesafe.ai and docs.typesafe.ai. JevMade is an independent community registry — not affiliated with or endorsed by TypeSafe AI.
Editor’s picks
Six that show the range.
The registry
Every experiment we could verify.
Each entry was traced back to a primary source we actually opened — the repository, live site, post, or article by its maker — and nothing here is invented. Figures like speed, cost, and stars are the maker’s reported numbers or a snapshot captured when this page was built.
Games, drones, trading bots, and browser agents all converge on the same loop: serialize the state, ask one decisive question, act, repeat. Jev’s latency makes the loop feel instant — the model lives inside the control loop, not outside it.
Confidence as a gate
The answer says what; the confidence says whether to act. The most reliable entries threshold on confidence to route edge cases to a slower model or a human — automation with an honest escape hatch.
Shrink the choice space in code
Makers rarely ask Jev to pick from everything. Local tactics prune 225 gomoku moves to ~40; DOM filters turn a page into an element table; code narrows options, Jev judges within them.
Jev judges, LLMs talk
A recurring split: Jev makes every decision cheaply and instantly, and a small LLM is only invoked when a human-facing string must actually be written. Decision and generation are separate budgets.
Made something with Jev?
Send the link — repo, live demo, post, or video — plus a line on what it does and which primitives it uses. Every entry is verified against its primary source before it ships.