Independent resource. typesafe-ai.com is not affiliated with, endorsed by or sponsored by TypeSafe AI. The official site is typesafe.ai.
>_typesafe-ai.com
Get Jev access

Jev AI: the TypeSafe Jev model

Jev is the first System One model from TypeSafe AI. It doesn't write text. It reads a state, answers typed questions, and returns calibrated probabilities your code can branch on.

Also searched as Jev AI, AI Jev, TypeSafe Jev, Jev TypeSafe, Jev by TypeSafe AI and the TypeSafe Jev model. Same model, made by TypeSafe AI.

latency
70 to 500 ms end to end (company-reported)
input
$0.042 per 1M tokens
output
free
questions
Noul, Choice, Score
status
early access since 2026-09-15
~/jev/ticket.sh
curl -X POST api.typesafe.ai/v1/systemone \ -H "Authorization: Bearer $KEY" \ -d @ticket.json200 jev-1.13.0 392 in / 65 out tokens department technical confidence 0.78 technical 0.85 billing 0.15 sales 0.00frustration 1.0 confidence 1.00 legend 1 = "Frustrated but civil"is_urgent 1.00
Sample based on the TypeSafe quickstart (support ticket about a failing Stripe integration). Not a live call: this site never calls the Jev API.

What is Jev AI? The TypeSafe Jev model explained

Jev is TypeSafe AI's first System One model: an AI model built to make fast, structured decisions that software can use directly. You send a state and typed questions, and Jev returns typed answers with calibrated probabilities and confidence. It does not generate text.

TypeSafe AI is an AI lab in San Francisco founded by Diogo Almeida, a former OpenAI researcher who worked on the methods that turned language models into chat assistants. After two years in stealth, the company released Jev in early access on 15 September 2026.

The pitch is simple: chat models are great with people, but software needs an interface it can depend on. Jev trades free-form strings for typed values, so the model can sit inside ordinary code as a fuzzy decision rule: classify, route, score, extract or branch.

The name comes from Daniel Kahneman's fast "System 1" thinking, and Jev itself is named after the economist William Stanley Jevons: cheaper intelligence should unlock far more use cases.

model
Jev, API alias jev-latest (docs show jev-1.13)
maker
TypeSafe AI, San Francisco
class
System One model, not an LLM
training
RLCD, reinforcement learning for calibrated decisions
output
typed decisions with probabilities and confidence
access
early access via typesafe.ai
same question, two kinds of model

          
Press the button to run JSON.parse on the output above.
your code

The LLM answer is illustrative and the Jev answer is trimmed from the TypeSafe docs sample. Many LLMs also offer structured-output modes. The point: with free-form strings, parsing, validation and retries are your job.

How the Jev model works: state, questions and typed answers

Every Jev call has two parts. The state is what Jev reads: a support ticket, an email, a tool call, or a JSON object describing your program. The questions define what you want back, and the possible answers are fixed in advance. Jev evaluates all questions in parallel and returns one typed answer per question.

Adding questions barely changes latency and costs only the extra input tokens. In TypeSafe's parallel-questions cookbook, one call with 13 questions was 12.2x cheaper and 10x faster than asking them separately, with no change in answers. Choice and Score answers also carry a confidence value that you can use to decide when to act and when to escalate.

The three Jev question types

request

{
  "type": "noul",
  "instructions": "The message conveys
    urgency or time-sensitivity"
}

response

{
  "type": "noul",
  "noul": 1.0
}

A Noul answers a yes/no question with the probability that the statement is true. Use it for flags such as urgent, spam, off-topic or jailbreak attempt.

Jev API request builder

Build a Jev request and copy it as JSON, cURL or Python. Nothing is sent anywhere: this page never calls the Jev API. To run it, use an API key from the TypeSafe console.

Presets

Jev vs LLMs: speed, cost and structured output

An LLM writes anything, so you parse, validate and hope. Jev only writes what you defined in advance, so the answer already fits your types. Both have a job: LangChain's guide frames Jev as a complement to the LLM that drives your agent, not a replacement.

Comparison as published by TypeSafe AI in its launch post. Figures are company-reported.
Typical LLMJev (System One model)
Trained withRLHF and RLVRRLCD, reinforcement learning for calibrated decisions
OutputStrings: chat, code, or JSON you still have to parse and validateType-safe structured values, defined in advance, with probabilities
SamplingSequential, one token at a timeParallel, all answers in one query
Input price$0.20 to $10 per 1M tokens$0.042 per 1M tokens
Output priceAround 5x the input priceFree
Latency3 to 329 seconds end to end for frontier models70 to 500 ms end to end
ConfidenceSelf-reported estimates tend to be overconfident and inconsistentReturned with every answer
Best atChat, copilots, coding agents, open-ended generationClassify, route, score, extract, verify and guardrail inside workflows

Jev cost calculator

Estimate Jev's monthly input cost at the published $0.042 per 1M tokens, next to an LLM priced with your own numbers. The LLM defaults are placeholders, not a quote.

Jev, per month$0
LLM, per month$0
-
Based on 30 days of traffic.

Read the fine print. Every speed and cost figure on this page comes from TypeSafe AI. The company says its evals were built by its own team, that its reference answers come from OpenAI and Anthropic models, that its latencies were measured from the US West Coast, and that it cannot yet prove its pricing is sustainable. Test Jev on your own workload before you commit.

What is Jev used for? Model routing, guardrails and classification

Jev fits wherever code needs a fast, cheap, calibrated judgment about messy input. Pick a use case to see how it is built.

Model routing: pick the cheapest model that can do the job

Let Jev read the request and choose a model by criteria you define: fast and inexpensive for lookups and extraction, more capable for architecture and high-stakes calls. LangChain ships an experimental ModelRouterMiddleware for this, and the probabilities stay available in agent state.

from langchain.agents import create_agent
from langchain_typesafe.experimental.middleware import (
    ModelChoice, ModelRouterMiddleware,
)

router = ModelRouterMiddleware(
    choices={
        "fast": ModelChoice(model="<cheap-model>",
                            criteria="Lookups, extraction, small edits."),
        "strong": ModelChoice(model="<strong-model>",
                              criteria="Architecture, high-stakes calls."),
    },
    instructions="Pick the cheapest model that can finish the task.",
)
agent = create_agent("<default-model>", middleware=[router])

LangChain guide to Jev

Jev API, SDKs and LangChain integration

The Jev API is one HTTP endpoint. Send the state, the model name and your questions, and read typed answers back. Official SDKs, a LangChain integration and an agent skill wrap it.

POST https://api.typesafe.ai/v1/systemone
Authorization: Bearer <API_KEY>
Content-Type: application/json

{ "model": "jev-latest", "state": "...", "questions": { ... } }
# Python 3.10+
pip install typesafe-sdk

from typesafe_sdk import Noul, TypeSafeClient

client = TypeSafeClient()  # reads TYPESAFE_API_KEY
res = client.system_one(
    state="Checkout fails for every customer since 9am.",
    questions={"urgent": Noul(instructions="Needs attention right now")},
)
print(res.answers["urgent"].noul)

There is also system-one-adapter-python, a drop-in client that runs the same System One requests on top of LLM APIs, handy for comparing Jev against a general model.

Jev limitations: what the TypeSafe model can't do

  • It doesn't generate text. Jev is not a drop-in replacement for an LLM. Keep an LLM for open-ended reasoning and writing, and give Jev the narrow decisions.
  • "Can't hallucinate" means "can't break the schema". Every answer fits your types, but an answer can still be wrong. TypeSafe publishes known weak spots for jev-1.13 on its jaggedness page.
  • Access is early access. Developers are admitted from a waitlist, and after launch, demand briefly outran the API, according to TechCrunch.
  • Text and structured state only, for now. TypeSafe's demos run on structured state rather than images, and it plans versions for other modalities.
  • Big candidate sets need a trick. A Choice supports up to 255 options. TypeSafe's Wikiracing demo scores links first, then makes an explicit choice.
  • The numbers are the company's own. Benchmarks, speed and pricing are self-reported, and TypeSafe says it cannot yet prove the pricing is sustainable.

Jev pricing and how to get early access

$0.042per 1M input tokens, or $42 per billion. Output tokens are free.

TypeSafe says this is about 238x lower than the input price of Claude Fable 5.1, and expects prices to go down rather than up. Prices and availability can change, so check typesafe.ai for the current terms.

  1. Join early access on typesafe.ai. TypeSafe is bringing developers off the waitlist as quickly as it can.
  2. Create an API key in the TypeSafe console.
  3. Send your first request to api.typesafe.ai/v1/systemone with the model jev-latest, or try it in the playground.

Jev news: TypeSafe AI launch timeline

  1. pressTechCrunch covers the launch. Early adopters quoted include Vercel, which reports its command-security classifier running 5 to 18 times faster on Jev, and Bryo AI, which found Gemini slightly more accurate at email classification but 10 to 20 times costlier. Source: TechCrunch.
  2. ecosystemLangChain publishes Building a Harness with Jev, covering TypeSafeClassifier, model routing and an Auto Mode guardrail.
  3. launchTypeSafe AI introduces System One models and Jev, and opens early access. Read the announcement.

Last updated 2026-09-21.

Jev AI FAQ

What is Jev AI?

Jev (also written Jev AI, AI Jev or TypeSafe Jev) is the first System One model from TypeSafe AI. It reads a state plus typed questions and returns typed answers, meaning yes/no probabilities, choices and scores, each with calibrated confidence, instead of generating text.

Who makes Jev and what is TypeSafe AI?

Jev is made by TypeSafe AI, an AI lab based in San Francisco and founded by former OpenAI researcher Diogo Almeida. Jev launched in early access on 15 September 2026, after two years in stealth.

Is Jev an LLM?

No. Jev is a System One model: it does not generate strings. The possible outputs are defined in advance as typed questions, so every answer fits the schema. TypeSafe positions Jev as a complement to LLMs, which stay better for open-ended reasoning and generation.

What is a System One model?

A System One model is built for fast, structured decisions inside software. The name borrows from Daniel Kahneman's fast "System 1" thinking. It evaluates a state and returns typed answers with probabilities, and is trained with RLCD, reinforcement learning for calibrated decisions.

What question types does the Jev model support?

Three: Noul (a yes/no probability), Choice (pick one option, with a probability for each option and an overall confidence) and Score (rate against ordered levels, with the distribution and a confidence). You can send several questions about the same state in one request and they are answered in parallel.

How do I get access to Jev?

Jev is in early access. Join through typesafe.ai, where TypeSafe is admitting developers from its waitlist. Then create an API key in the TypeSafe console and call POST https://api.typesafe.ai/v1/systemone with the model jev-latest.

How much does Jev cost?

TypeSafe lists $0.042 per million input tokens ($42 per billion), with output tokens free. It says it expects prices to fall, but admits it cannot yet prove the pricing is sustainable. Check typesafe.ai for current pricing.

How fast is Jev?

TypeSafe reports 70 to 500 ms end to end per call, and up to about 200x faster than comparable LLMs on workflows shaped like System One tasks. These are company figures, measured from the US West Coast, so test on your own workload.

Does Jev hallucinate?

Jev cannot make type errors: every answer matches the schema you define. That is not the same as always being right. Answers are probabilistic, and TypeSafe publishes known weak spots of jev-1.13 in its docs. Use the confidence value to send uncertain cases to a human or a stronger model.

Jev vs GPT, Claude or Gemini: which should I use?

It is not either or. Use an LLM for open-ended reasoning and text, and Jev for fast, cheap decisions inside the workflow: classify, route, score, extract, guardrail. In one test reported by TechCrunch, Gemini was slightly more accurate at email classification but cost 10 to 20 times more.

Does Jev work with LangChain and SDKs?

Yes. TypeSafe ships a Python SDK (typesafe-sdk), a JavaScript and TypeScript SDK, a LangChain integration (langchain-typesafe) and an agent skill for Claude Code and other coding agents. See the API and SDK docs for details.

Where does the name Jev come from?

TypeSafe named it after the economist William Stanley Jevons: each drop in the cost of intelligence should unlock far more use cases. The model class, System One, comes from Kahneman's Thinking, Fast and Slow.

Is typesafe-ai.com the official Jev website?

No. typesafe-ai.com is an independent resource, not affiliated with, endorsed by or sponsored by TypeSafe AI. The official site is typesafe.ai, with docs at docs.typesafe.ai.

Try Jev by TypeSafe AI on the official site

Typed decisions, calibrated confidence, one API call.