Build Interactive 3D Worlds With GPT-6 & Blender

TL;DR
TypeSafe's Jev is the first 'System One' model: no text generation, typed decisions with calibrated probabilities, 70-500ms responses, and $0.042 per million input tokens. Benchmarks, pricing, and the API.
TypeSafe AI opened early access on September 15, 2026 for Jev, the first "System One" model: a model class that gives up text generation entirely and returns typed decisions with calibrated probabilities instead. The pitch is a change of interface, not just a new benchmark: $0.042 per million input tokens, output that TypeSafe says is free, end-to-end responses of 70-500ms, and a guarantee that the model cannot emit an output outside the schema you defined. On the company's own workflow evals, Jev lands within 3 points of the most expensive frontier models while costing roughly 4,000x less per call. Founder Diogo Almeida, who worked on the instruction-following methods behind ChatGPT at OpenAI, argues chat-shaped models are the wrong interface for automation: software does not want strings, it wants values it can branch on.
| Resource | Description |
|---|---|
| TypeSafe announcement: Introducing System One Models & Jev | Release notes, architecture, pricing, nuance and caveats |
| TypeSafe docs: Quick start | API endpoint, cURL and Python SDK examples |
| TypeSafe API reference | Endpoint, primitives, request and response shapes |
| TypeSafe workflow evals site | Published eval methodology and per-model results |
| System One adapter for LLMs (GitHub) | The wrapper that constrains ordinary LLMs to structured decisions |
Jev is an early-access hosted model you reach at POST https://api.typesafe.ai/v1/systemone with model id jev-latest. You send one state (unstructured text or program state) plus any number of typed questions, and get every answer in a single call. Three primitives cover the decision space:
Each question is evaluated in parallel and in isolation against the same state, so adding questions barely changes latency and does not create context-rot. TypeSafe's cookbook for parallel questions reports a 13-question briefing in one call being 12.2x cheaper and 10.0x faster than per-question calls, with identical answers.
The architecture is the unusual part. Jev uses a parallel sampler instead of autoregressive token generation: possible outputs are enumerated in advance, so schema conformance is guaranteed rather than sampled. Training uses a new recipe, Reinforcement Learning for Calibrated Decisions (RLCD), which optimizes for "epistemically honest" probabilities instead of human preference: higher confidence means higher accuracy.
TypeSafe publishes most of its receipts on the workflow evals site: fixed code-defined workflows, reference answers from the average of GPT-6 Astra and Fable 5.1, and every model run through the same constrained answering path. Best workflow row per model, as published:
| Model | Accuracy | Cost per call | Latency |
|---|---|---|---|
| Jev | 76.0% | $0.0001 | 0.4s |
| GPT-5.6 Luna | 76.1% | $0.0025 | 14.5s |
| DeepSeek V4 Flash | 76.8% | $0.0029 | 34.6s |
| DeepSeek V4 Pro | 76.1% | $0.0232 | 58.6s |
| GPT-5.6 Terra | 74.7% | $0.0778 | 17.3s |
| GPT-6 Sol | 79.1% | $0.2152 | 34.3s |
| Claude Opus 5 | 78.4% | $0.4856 | 92.1s |
| Claude Sonnet 5 | 72.9% | $0.3616 | 241.3s |
| Claude Haiku 4.5 | 58.8% | $0.0047 | 3.4s |
Read the caveats before quoting these anywhere: the workflows were designed by TypeSafe's own capabilities team, the reference answers bias toward OpenAI and Anthropic models, and the company calls its homepage multipliers (193.6x faster, 444.6x cheaper) "the higher end of real world gains." None of that changes the shape of the result: on these decision tasks, Jev matches the mid-tier frontier models at 25-145x lower latency and hundreds to thousands of times lower cost.
The mechanism cost story is where the numbers get extreme. TypeSafe's own Doom demo bot fires 10 decisions per second for about $7 an hour. An "is this urgent" check on every inbound support message is no longer metered in anything an invoice notices.
From the archive
Sep 13, 2026 • 8 min read
Sep 10, 2026 • 7 min read
Sep 10, 2026 • 8 min read
Sep 6, 2026 • 8 min read
First-party pricing from the announcement and TypeSafe pricing:
| Price | |
|---|---|
| Input | $0.042 per 1M tokens ($42 per billion) |
| Output | Free, "too cheap to meter" |
| Context / cardinality | Choices up to 255 options; two-stage scoring above that |
TypeSafe claims this is 238x cheaper on input than Claude Fable 5.1, and is candid that the price may be subsidized: "we'll need the long-term to prove the sustainability of our pricing (which we expect to go down, not up)." Output tokens are still counted in usage, but not billed.
There is no OpenCode provider for Jev yet - opencode models does not list it, and none of this site's automations run on it. The integration surface is the REST API plus official SDKs:
curl -X POST https://api.typesafe.ai/v1/systemone \
-H "Authorization: Bearer $TYPESAFE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"state": "Hi, I have been trying to connect my Stripe account for 3 days and it keeps failing. I am losing sales. Please help ASAP.",
"model": "jev-latest",
"questions": {
"urgency": { "type": "noul", "instructions": "Does this message express urgency?" }
}
}'
Python SDK: pip install typesafe-sdk (a JavaScript SDK ships too), plus an agent skill installable into Claude Code (claude plugin marketplace add typesafe-ai/skills) or any agent via npx skills add typesafe-ai/skills --skill typesafe-ai. Access is gated: an API key comes from the console dashboard once you are off the waitlist.
Jev is deliberately incapable of open-ended work. The fit is work that ends in a JSON object anyway: routing and escalation (which team, which handler, with confidence deciding whether a human reviews first), scoring and ranking (sentiment, document relevance, review priority, thresholded in code), guardrails (screening prompts and outputs for jailbreaks), and high-volume extraction and classification.
The architecture pattern TypeSafe pushes is "keep code in control": decompose a judgment into atomic questions, then combine them with weights and thresholds you own. That is the same decomposition our model routing orchestration layer playbook prescribes, and the confidence channel is a second axis that router comparisons rarely account for. In a gateway-style setup like Envoy AI Gateway, a decision model becomes one more route target.
The honest boundary: Jev can no more write a diff or answer an open question than a router can. The interesting question is which share of your agent's calls were ever really generative. If your agents mostly classify, score, and branch, the "decision lane" just got a price point that changes the arithmetic - the division of labor between string models and decision models becomes a real architectural choice rather than a vendor's slide.
Jev is TypeSafe AI's first System One model, in early access since September 15, 2026. It does not generate text: you send structured questions about a state and receive typed answers with calibrated probabilities and confidence, in 70-500ms.
$0.042 per million input tokens and no output charge, per the TypeSafe announcement. The company says the price may be subsidized and expects it to go down over time.
Under its own guarantee, it cannot: possible outputs are enumerated in advance, so the model cannot return a value outside your schema. It can still be wrong about a decision - the calibration channel exists so you can threshold on confidence and send low-confidence cases to review.
Not yet. There is no OpenCode provider or model id for it; the supported surfaces are the REST API, the official Python and JavaScript SDKs, and an installable agent skill.
Structured outputs force a string model to emit JSON and parse it. Jev never produces strings: outputs are typed at the sampling layer, every answer carries probabilities and confidence, and all questions in a call resolve in parallel.
| Source | URL |
|---|---|
| Introducing System One Models & Jev (TypeSafe AI blog) | https://typesafe.ai/blog/introducing-system-one-models-and-jev |
| TypeSafe docs: Quick start | https://docs.typesafe.ai/introduction/quickstart |
| TypeSafe API reference | https://docs.typesafe.ai/api |
| TypeSafe workflow evals | https://evals.typesafe.ai/ |
| System One adapter for LLMs | https://github.com/typesafe-ai/system-one-adapter-python |
| TypeSafe agent skill | https://docs.typesafe.ai/agent-skill |
Last updated: September 16, 2026
Read next
A $500M accidental Claude bill and an open-weights model beating GPT-5.5 at one-sixth the cost point to the same conclusion: the margin is moving to the layer that decides when to use which model for what. Here is how routing and orchestration differ, and how to cut your model spend.
12 min readA practical comparison of LLM routing tools - LiteLLM, Portkey, and OpenRouter - covering cost management, fallbacks, caching, and when to use each for production AI applications.
10 min readEnvoy AI Gateway 1.0 is production-ready. The useful question for builders is when an Envoy-based LLM gateway beats direct SDK calls, LiteLLM, OpenRouter, or a hosted AI gateway.
8 min readTechnical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
DeepSeek's reasoning-first model built for agents. First model to integrate thinking directly into tool use. Ships along...
View ToolAnthropic's first generally available Mythos-class model, released June 9, 2026. 1M context, 128K max output, $10/$50 pe...
View ToolAnthropic's AI. Opus 4.6 for hard problems, Sonnet 4.6 for speed, Haiku 4.5 for cost. 200K context window. Best coding m...
View ToolOpenAI's flagship. GPT-4o for general use, o3 for reasoning, Codex for coding. 300M+ weekly users. Tasks, agents, web br...
View ToolPick a model in 30 seconds. Built for the answer, not the marketing.
View AppTry AI models in the browser before paying for a single token.
View AppPaste a video transcript, get 10 ranked first-3-second hook rewrites optimized for Shorts/Reels retention.
View AppInstall Ollama and LM Studio, pull your first model, and run AI locally for coding, chat, and automation - with zero cloud dependency.
Getting StartedInstall the dd CLI and scaffold your first AI-powered app in under a minute.
Getting StartedInstall Claude Code, configure your first project, and start shipping code with AI in under 5 minutes.
Getting Started
Mercury Two: The First Reasoning Diffusion LLM (1,000+ tokens/sec) - Speed Without Sacrificing Quality Inception Labs releases Mercury Two, a reasoning diffusion-based LLM that exceeds 1,000 tokens p

Empowering developers and democratising coding with Mistral AI. In this video, I explore CodeStraw, the latest coding model from Mistral AI designed for code generation tasks. Learn about...

Introducing Meta Llama 3: The most capable openly available LLM to date Meta has released two groundbreaking AI models under the Lama 3 series, an 8 billion parameter model and a 70 billion...

A $500M accidental Claude bill and an open-weights model beating GPT-5.5 at one-sixth the cost point to the same conclus...

A practical comparison of LLM routing tools - LiteLLM, Portkey, and OpenRouter - covering cost management, fallbacks, ca...

Envoy AI Gateway 1.0 is production-ready. The useful question for builders is when an Envoy-based LLM gateway beats dire...

New benchmark data shows GPT-5.5 hallucinates 86% of the time when it does not know the answer - versus 28% for the open...

Complete pricing breakdown for every major AI coding tool. Claude Code, Cursor, Copilot, Windsurf, Codex, Augment, and m...

Meta released Muse Code, a terminal coding agent, and Muse Spark 1.2 on August 5, 2026. The model co-trains with the har...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.