Straight answers, pulled from across all 18 breakdowns.
What is Jev?
Jev is an AI model from TypeSafe AI that never writes a word. You hand it an input and a schema of allowed answers, and it hands back a probability for each option. That is the whole product. It cannot chat, cannot explain itself, and cannot write code. Creators call it a decision model or a classifier rather than a language model.
How is Jev different from ChatGPT or Claude?
A chat model generates an answer one token at a time and streams you text you then have to parse. Jev evaluates every option in parallel and returns typed numbers and categories you can drop straight into code. No reasoning trace, no JSON wrapper, no parsing step. The practical difference creators kept measuring: roughly 200 to 400 milliseconds per decision instead of 10 to 30 seconds.
How fast and how cheap is Jev really?
TypeSafe claims 20x to 200x faster and 40x to 400x cheaper than a comparable LLM call, around 0.4 seconds and $0.0004 per decision. Independent creator tests land in that neighborhood: 185ms on a smart-home command, about 200ms per email across 1,700 emails, and 413ms on a 40-question outfit benchmark where Claude Haiku took 1,486ms and GPT-6 Astra took 3,269ms. Pricing is asymmetric: output is free because there is no output, and input runs about $0.042 per million tokens.
Who makes Jev?
TypeSafe AI, a lab founded by one of the co-inventors of ChatGPT. Its name nods to Daniel Kahneman’s System 1, the fast intuitive half of human thinking, which is exactly the role the company wants Jev to play next to a slower reasoning model. One early breakdown transcribed the company as "TypeSpace"; the rest of the corpus says TypeSafe.
What are Jev’s three output types?
Choice, score, and null. Choice picks one option from a list you define. Score rates the input on a scale you define, say 1 to 5. Null is a yes/no answered as a probability, like 91% confident yes. Every Jev request is one of those three shapes, and one API call can answer several of them about the same input at once.
What can Jev actually do?
Anything that is really a fast judgment call on structured input. Creators demoed inbox triage (category, priority, spam likelihood, reply likelihood), lead scoring from a contact form, routing a coding agent to the right model tier, picking the best clips in a long video, driving a browser agent through a booking flow, real-time smart-home command routing, a self-driving simulation, and a crypto bot choosing buy, sell, or hold every few hundred milliseconds.
What should you not use Jev for?
Anything that needs reasoning, writing, or a high-stakes judgment call. In a live buy/hold/sell Bitcoin test, Jev underperformed a frontier reasoning model that could cross-reference the news. It also cannot explain why it decided something, and its 64,000-token context window is roughly 6% of a frontier chat model’s, so it cannot weigh much reference material per decision.
Is Jev calibrated, or just confident?
TypeSafe trained it with RLCD, reinforcement learning for calibrated decisions, which rewards probability estimates that match real-world frequency instead of rewarding answers that sound sure. The claim is that an 80% call actually happens about 80% of the time. That matters, because a confidence number you can trust is what lets you auto-accept high-confidence picks and escalate the rest.
How do I get access to Jev?
TypeSafe runs a waitlist for direct API access. You do not have to wait: the Vercel AI Gateway serves Jev today with an API key, and OpenRouter lists it too. Creators testing the model in launch week all routed around the waitlist that way.
How do you add Jev to Claude Code?
Through the UserPromptSubmit hook, which intercepts a message before the LLM ever sees it. Every prompt hits Jev first; if Jev can resolve it with a direct tool call, it answers instantly and no LLM tokens are spent, and anything it cannot handle falls through to Claude as normal. Setup is a TypeSafe API key plus TypeSafe’s agent setup prompt and skill file, pasted into a fresh session and wired by the agent itself.