What is the Jev model?

Jev is TypeSafe AI's "System One" model, launched September 15, 2026: instead of generating text, it returns typed decisions — a choice, a score, or a yes/no probability — for questions you attach to a piece of text or JSON state. Founder Diogo Almeida (ex-OpenAI, worked on ChatGPT research) built it after two years in stealth; the company came out with a $40M seed round led by DCVC. It answers in roughly 70–500 milliseconds at $0.042 per million input tokens with output free — and the reason it's viral is the economics, not just the speed: when a decision costs a fraction of a cent, software starts making far more of them.

Launch receipts (all September 2026, all third-party reported).
Launched September 15, 2026 (founder's launch post). Built by TypeSafe AI — founder Diogo Almeida (ex-OpenAI ChatGPT research), with Erik Gafni and Sasha Sheng per Truefoundry's write-up. $40M seed led by DCVC. Week-one traction: a 140,000+ waitlist cleared in days, X's trending page, 12,759 tweets analyzed by OpenChamber, reimplementations by strangers on GitHub, and 1,500+ Hacker News points with 426 comments within a day of launch. Vercel made Jev available through its AI Gateway — and TypeSafe briefly lost API capacity when launch demand exceeded supply. Community builds followed within days: jevchat, jev-leftpad, jev-2048, and an open-weight riff called Kev built on Qwen. Simon Willison covered it on his blog (calling the new category "decision models") and shipped an llm-typesafe plugin for his LLM CLI the next day.

Current model facts (September 2026). The production alias jev-latest resolves to jev-1.13.0. Context: 64K tokens per request (32K for state plus the longest single question). Input is text only — a string, a JSON object, or an array. TypeSafe states Jev is not trained on customer requests and is not fine-tuned per account; you shape behavior with instructions in the request.

The three things Jev outputs (and nothing else)

PrimitiveWhat it returnsExample
ChoicePicks exactly one option from up to 255, with a probability per option"Is this support ticket critical?" → Critical / Normal / Low
ScoreA numeric rating on a defined scaleChurn risk on 0.0–1.0
NoulYes/No with a probability"Does this text contain personal data?" → 0.92

All three can be combined in one API call and evaluated in a single forward pass — ask 20 questions about the same input and get 20 typed answers back at once. No token-by-token generation, no autoregressive loop. That's the source of the speed. Week-one builders used it to route support tickets, classify papers, and play Doom.

Honesty note on the big numbers. The "20–200x faster, 40–400x cheaper than LLMs" figures are TypeSafe's own launch evaluations and have not been independently validated across broad production workloads. Treat them as the company's claim, not a benchmark.

What the current top answers lack

Top answerWhat it lacks
Medium — "What Is Jev? TypeSafe AI's Decision-Only Model, Explained" (Sept 22, 2026)Good plain-English explainer; reports the 140k waitlist and GitHub reimplementations. No code, no production pattern, no pricing math, no payment layer.
dev.to — "TypeSafe AI Jev: An AI model that doesn't generate text" (Sept 18, 2026)Best primitives table of the bunch. Repeats the 20–200x / 40–400x claims without noting they're the company's own evals. No DIY, no economics.
KuCoin — "What Is Jev AI? TypeSafe's System One Model Explained"Encyclopedic; pins jev-1.13.0 and the 64K context correctly. No code, no dated claims, no confidence-gate pattern, no economics of decision pricing.
codewithnishant — "Jev by TypeSafe AI: The AI That Decides, Not Writes" (Sept 21, 2026)Best week-one recap; the $0.042 vs GPT-5 Nano $0.05 comparison is useful. No production code, no payment angle — the part that actually matters to builders.

The part nobody is writing about: Jev decides, x402 pays

Here's the angle every explainer misses. Jev is named for the Jevons-paradox insight its own launch materials lean on: make a decision cheap enough and software starts making far more of them. A 1,000-token decision at $0.042/M input tokens costs about $0.000042 in model cost — a fraction of a cent per call, exactly as the launch coverage puts it.

That flips the business model. When each decision is a sub-cent event, subscriptions and API keys stop making sense — every decision is a billable event, and the native way to charge for it is per-call micropayments with no accounts, no keys, and no checkout. That is precisely the job x402 was built for: the server answers an unpaid request with a 402 Payment Required challenge (price, asset, network, payTo), the buyer's wallet signs and retries, a facilitator settles on-chain.

Live receipts — the per-decision payment layer already exists.
ProBlocks runs a live x402 endpoint on Base at 0.001 USDC per call (September 2026; controlled mainnet payment September 7 returned a verifiable on-chain receipt). ScriptMasterLabs runs an x402 v2 payment contract live on Base you can inspect yourself: curl https://squeezeos-api.onrender.com/.well-known/x402 → operator SCRIPTMASTERLABS, network eip155:8453, asset USDC, payTo 0xc29185fa176357612f3194735753e520e91adc46, facilitator https://api.cdp.coinbase.com/platform/v2/x402, PAYMENT-REQUIRED / PAYMENT-SIGNATURE / PAYMENT-RESPONSE headers. (Verified live September 22, 2026.)
Honest context: TRM Labs (September 9, 2026) counted ~198.9M x402 settlements worth ~$52.7M since May 2025 — but only 0.6–7.5% of the value looks clearly agentic. The rail is proven; the agent economy on top of it is early. That's the opening, stated straight.

The confidence-gate pattern (how production Jev integrations route)

The pattern every serious Jev integration converges on — it's in TypeSafe's own launch materials and it's how builders are actually wiring it:

confidence >= 0.80  →  AUTO-ACT    (no human in the loop)
0.50 – 0.79         →  ADVISORY    (show a human the decision + evidence)
< 0.50            →  ESCALATE    (a human decides; log it for review)

The same banding shows up in the wild: an open-source voice-marketplace project gates allow/challenge/block at 0.9+ / 0.4–0.7 / <0.4, and Vercel's AI Gateway pitch for Jev is exactly "automate high-confidence cases while sending uncertain ones for review." In code:

def route(decision):
    c = decision.confidence
    if c >= 0.80:
        return auto_act(decision)     # no human in the loop
    if c >= 0.50:
        return advisory(decision)     # human sees decision + evidence
    log_for_review(decision)          # < 0.50: your future training data
    return escalate(decision)

Production note: pin jev-1.13.0, don't float on jev-latest — the alias moves when TypeSafe ships new models, and your tuned thresholds move with it.

Do it yourself

  1. Try a decision. Request shape (illustrative — check TypeSafe's current docs for the live endpoint and auth scheme):
    curl -X POST "$TYPESAFE_API_URL" \
      -H "Authorization: Bearer $TYPESAFE_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "state": {"ticket_text": "Checkout 500s after I pay", "plan": "pro"},
        "questions": {
          "severity":        {"type": "choice", "options": ["critical","normal","low"]},
          "churn_risk":      {"type": "score",  "scale": [0.0, 1.0]},
          "mentions_billing":{"type": "noul"}
        }
      }'
  2. Wire the confidence gate. Start with 0.80 / 0.50 bands, route as above, and log every sub-0.50 escalation — that log is the dataset you tune thresholds against.
  3. Put the decision endpoint behind per-call billing. Answer unpaid calls with a 402 challenge carrying price, asset, network, payTo, and expiry; verify the buyer's signature through a facilitator; settle on-chain; return the decision with a payment receipt. Pricing math: ~$0.000042 model cost per 1K-token decision means 2–10x cost pricing still lands under a tenth of a cent per decision. Seller walkthrough: how to monetize an MCP server with per-call x402 billing.
  4. Get discovered where agents look. Machine-readable discovery is the distribution layer for decision endpoints — the same problem x402 marketplaces are solving for APIs. Background: what the x402 payment protocol is.

Where ScriptMasterLabs fits

Sources

Frequently Asked Questions

Q: What is the Jev model?

A: Jev is TypeSafe AI's "System One" decision-only model, launched September 15, 2026. You send it text or JSON state plus questions with predefined answers; it returns typed decisions — Choice, Score, or Noul (yes/no) — with probabilities, in roughly 70–500ms. No text generation, no token stream.

Q: How much does Jev cost?

A: $0.042 per million input tokens; output is free. A 1,000-token decision costs about $0.000042 in model cost — which is why per-decision x402 micropayments are the natural billing unit.

Q: Is Jev an LLM?

A: Not a generative one. TypeSafe calls it a "System One" model: it reads language but only makes fast, structured decisions software can branch on. Simon Willison calls the category "decision models" — and flags the tradeoff: all you get back is a floating-point number, which is hard to interrogate.

Q: How do you use Jev in production?

A: With a confidence gate: ≥0.80 auto-act, 0.50–0.79 advisory to a human, <0.50 escalate and log. Pin jev-1.13.0 rather than floating on the jev-latest alias.

Q: How do you charge per decision for a decision model?

A: Per-call x402 billing: unpaid requests get a 402 challenge with price, asset, network, and payTo; the buyer's wallet signs and retries; a facilitator settles on-chain. At sub-cent model costs, per-decision prices in the 2–10x cost band are still under a tenth of a cent.

Truth First. Proof Always. Pay Only for Accepted Delivery.