Build Ultra-Fast AI Agents Powered by Jev
Jev is TypeSafe AI's System One model. Instead of generating text, it evaluates a state — a paragraph, a JSON object, or a list of strings — against a map of typed questions and returns one structured answer per question in a single parallel pass. It is not a chat model and it does not write prose; it decides. Jev Agent is an independent platform built around that model, and it is currently in early access. This page covers what the model does, why its design fits the fast inner loop of an AI agent, and the agent architectures you can build on it.
TypeSafe reports Jev's end-to-end latency at 70–500ms and prices it at $0.042 per million input tokens with output free, in its System One announcement. That combination is what makes it practical to call on every step of an agent loop, instead of reserving a large model for steps that do not need one.
Why Jev Fits the Decision Loop of AI Agents
Daniel Kahneman split human thinking into System 1, fast and automatic, and System 2, slow and deliberate. Most production agents lean on a single System 2 model for every step, even the steps that only need a fast pick-one or yes/no answer: was this ticket urgent, which tool should run next, did the last action succeed. That mismatch is expensive and slow. TypeSafe Jev models close it by running as System 1, non-generative inference: instead of writing a token at a time, they read a state and answer a fixed set of questions in one pass, attaching a confidence value to each answer.
TypeSafe built it as a different kind of AI: Jev returns a typed decision instead of generated text, so there is no output schema to validate and no free-form string to parse. Its documented interface accepts text-only input and answers three kinds of Choice, Score, Noul questions: a Choice picks one label from a closed set, a Score returns a number in a range, and a Noul returns the probability that a statement about the state is true. Once you have access, an agent loop can call the Jev AI API for the classification and routing steps in each iteration, and save a larger System 2 model for the steps that genuinely need open-ended reasoning.
What You Can Build with Jev
Jev AI Agent Builder
Build Autonomous Jev Agents around a typed decision loop: step through an illustrative sample in which a support agent looks up an order, refunds a duplicate charge and closes the task, asking Jev on every turn which tool comes next and whether the goal is done. Hosted agent runs open with early access.
Jev Browser Use Integration
See how a Jev Browser Automation Agent handles three built-in sample pages: each page becomes a list of elements, and two typed Choice questions pick the element and the action before a click ever fires. The demo shows illustrative answers, and live browsing in a cloud session will open through early access.
Hybrid Jev + Claude Reasoning Pipelines
Pair the model with a larger one in a Jev + Claude Hybrid Architecture: the fast System One layer handles routing and scoring, and the larger model handles the steps that need open-ended generation, so neither tool ends up doing the other's job.
Typed Jev API Endpoints
Explore Jev API & SDK access: the request and response shapes are on that page now, and once early access opens you will send a state to a typed endpoint and get back a structured answer, with a confidence value, that you can parse without an output-schema retry loop.
Try Jev in the Playground
Run four illustrative samples right on this page before you request access, each built from a common agent scenario: routing a support ticket, scoring incident urgency, deciding a refund, and triaging a queue. Each sample is hand-written to follow the request and response shape of TypeSafe's published examples — not recorded from Jev — and shows the typed answer, the probability attached to each Choice option, and the confidence value that comes with it.
Request
{
"model": "jev-latest",
"state": "Help! My payouts have been failing for 3 days.",
"questions": {
"department": {
"type": "choice",
"instructions": "Which team should handle this?",
"criteria": {
"billing": "Payments, invoicing, refunds",
"technical": "Bugs, outages, integrations",
"sales": "Pricing, upgrades, new accounts"
}
}
}
}Response
Illustrative sample — not a live Jev responsePress Run sample to see the typed answers.
Jev vs a Traditional LLM Agent
| Metric | Traditional LLM agent | Jev System 1 agent |
|---|---|---|
| Output | Generated text, parsed after the fact | One typed answer per question, with probability and confidence |
| End-to-end latency | 3–329s on demo agent workflows | 70–500ms |
| Input price | $0.20–$10 per million tokens | $0.042 per million tokens |
| Output price | About 5x the input rate | Free |
| Best at | Open-ended reasoning and long-form generation | Fast Choice, Score, Noul questions inside an agent loop |
TypeSafe reports these latency and price figures in its System One announcement, and The Rundown AI puts the overall cost advantage at 40–400x cheaper than frontier LLMs. Neither tool replaces the other: the table above is about picking the right tool for each step of a loop, not choosing one model for an entire agent.
Pricing, Benchmarks and How Jev Works
TypeSafe benchmarks show System One running up to 200x faster than LLM inference on System One-shaped queries, inside a documented 40–200x range with a 193.6x result on its own demo workflow, per the System One announcement. For where each figure comes from, what the cost comparison assumes and what TypeSafe has not published yet, Inspect Jev Performance Benchmarks.
If you want to price your own token volume before you commit to a plan, View Jev Pricing Plans and run the numbers through the calculator there — it uses Jev Agent's own plan and pack rates, not TypeSafe's $0.042 list price. And if you are wondering how a non-generative model produces a typed decision at all, rather than a paragraph of text, What is the Jev Model? explains how System One works, from the state it reads to the answer it returns.
Frequently asked questions
What is Jev and how does it work?
Jev is a System One model built by TypeSafe AI. Instead of generating text token by token, Jev evaluates a state — text, a JSON object or an array of strings — against a map of typed questions and returns one structured answer per question, with probabilities and a confidence value, in a single parallel pass.
How does Jev achieve 400x cost savings?
TypeSafe prices Jev at $0.042 per million input tokens and does not charge for output, because Jev returns typed decisions rather than generated text. The Rundown AI puts Jev at 40–400x cheaper than frontier LLMs, and TypeSafe's own launch post reports up to 444.6x; both are upper ends, not figures every workload will see.
Can I use Jev for agentic workflows?
Yes. Jev fits the fast inner loop of an agent: routing a request, picking the next tool, checking whether a step succeeded or deciding when to escalate to a larger model. Jev Agent access for these workflows is opening in batches through early access.
Is Jev Agent the official Jev website?
No. Jev Agent is an independent platform and is not affiliated with or endorsed by TypeSafe AI. Jev is a trademark of TypeSafe AI, and the official documentation lives at docs.typesafe.ai.
