Jev typed output
Possible outputs are defined before the call, so application code does not need to parse free-form prose.
JEV AI PLAYGROUND & JEV SCHEMA BUILDER
Explore the Jev playground for Choice, Score, and Noul—no account or API key required.
Unofficial community resource. Not affiliated with TypeSafe AI.
Local request builder
This builds a valid request locally; it does not call the Jev API or generate a model answer.
The shared text or structured context Jev evaluates.
Use letters, numbers, and underscores.
Ask one focused judgment about the state.
One option per line. Add an optional description after a colon.
Generated request JSON
{
"model": "jev-latest",
"state": "I was charged twice for order A-104. Please refund the duplicate payment today.",
"questions": {
"route": {
"type": "choice",
"instructions": "Which team should handle this request?",
"criteria": {
"billing": "Payments, invoices, or refunds",
"technical": "Bugs, outages, or integrations",
"sales": "Pricing, plans, or new accounts"
}
}
}
}Ready to run it? Use the official quick start
The playground runs entirely in your browser. Your state and questions are not uploaded.
JEV API PRICING
Estimate monthly spend at current standard input rates for Jev, GPT-5.6 Terra, and Claude Sonnet 5.
Enter a token count or use K, M, and B shorthand.
Quick estimates
Estimated monthly input cost
At this volume
For 1M input tokens, Jev is 97.9% less and saves $1.96 versus GPT-5.6 Terra or Claude Sonnet 5.
Input-token prices only. Estimates use standard API rates and exclude LLM output tokens, caching, batch discounts, taxes, and provider fees.
Prices checked September 19, 2026.
WHAT IS JEV AI?
Jev is TypeSafe AI’s first System One model: it turns text or structured state into typed decisions and probabilities.
Instead of generating paragraphs one token at a time, the TypeSafe Jev model evaluates focused questions in parallel. That makes it useful for classification, routing, scoring, verification, and other decisions that software needs to consume directly.
Read the official System One overviewPossible outputs are defined before the call, so application code does not need to parse free-form prose.
Multiple focused questions can share one state and be evaluated independently in the same request.
Probabilities and confidence help software decide when to act and when to escalate for review.
TypeSafe currently charges for input tokens while Jev output tokens are free.
CHOICE · SCORE · NOUL
Choose the primitive that matches the shape of the decision your software needs. Each returns a constrained result rather than generated text.
Which option fits?
Pick one item from a fixed set, such as routing a support ticket to billing, technical support, or sales.
Returns: choice, probabilities, confidence
Where does it fall on a scale?
Evaluate ordered levels such as low, medium, high, and critical, with a probability distribution across the rubric.
Returns: score, legend, probabilities, confidence
How likely is this to be true?
Ask a clear yes-or-no question and receive the probability of yes, from 0 to 1.
Returns: noul probability
JEV API KEY & SDKs
Get a Jev API key directly or use an established integration. These links cover the current Python example, Node SDK, LangChain package, OpenRouter route, and Vercel AI Gateway model.
console.typesafe.ai
Sign in to the TypeSafe Console, create a direct API key, and use jev-latest with POST /v1/systemone.
Open TypeSafe quick startpip install typesafe-sdk
Use TypeSafeClient with Choice, Score, and Noul objects. The official package supports synchronous and asynchronous calls.
View the Python SDK examplenpm install @typesafe-ai/sdk
The official JavaScript and TypeScript client supports Node.js 20 or newer and infers answer types from your questions.
View the Node SDK examplepip install langchain-typesafe
LangChain exposes Jev through TypeSafeClassifier for typed classification inside agents, middleware, and routing flows.
Read the LangChain Jev guidetypesafe/jev-1.13
Use an OpenRouter account and key to route requests to the current Jev 1.13 listing.
View the OpenRouter model pagetypesafe-ai/jev
Use Vercel’s AI SDK evaluate API with a Vercel AI Gateway key and the TypeSafe provider route.
View the Vercel model pageCOPY-PASTE JEV CODE EXAMPLES
These minimal examples follow the current provider documentation. Set the required API key in your environment before running them.
pip install typesafe-sdkfrom typesafe_sdk import Choice, TypeSafeClient
with TypeSafeClient() as client:
response = client.system_one(
state="I was charged twice. Please refund the duplicate.",
questions={
"route": Choice(
instructions="Which team should handle this?",
criteria={"billing": None, "technical": None},
)
},
)
print(response.choices["route"].choice)TypeSafe Python SDKnpm install @typesafe-ai/sdkimport { choice, TypeSafeClient } from "@typesafe-ai/sdk";
const client = new TypeSafeClient();
const response = await client.systemOne({
state: { document: "I was charged twice. Please refund it." },
questions: {
route: choice("Which team should handle this?", {
billing: null,
technical: null,
}),
},
});
console.log(response.answers.route.choice);TypeSafe JavaScript SDKpip install langchain-typesafefrom langchain_typesafe import Noul, TypeSafeClassifier
classifier = TypeSafeClassifier()
response = classifier.invoke(
state="The deploy failed twice. Customers are seeing 500s.",
questions={
"urgent": Noul(
instructions="Does this need attention right now?"
)
},
)
print(response.nouls["urgent"].noul)LangChain Jev guidenpm install aiimport { experimental_evaluate as evaluate } from "ai";
const result = await evaluate({
model: "typesafe-ai/jev",
state: "The support agent issued a full refund.",
questions: {
refunded: {
type: "boolean",
instructions: "Was a refund issued?",
},
},
});
console.log(result);Vercel Jev model pageJEV VS GPT-5.6 · JEV VS CLAUDE
The price gap is real, but this is not an equal-capability comparison. Jev specializes in fast, constrained decisions; general-purpose LLMs handle open-ended generation and reasoning.
| Dimension | Jev | GPT-5.6 Terra | Claude Sonnet 5 |
|---|---|---|---|
| Input price per 1M tokens | $0.042 | $2.00 | $2.00 |
| Output price per 1M tokens | Free | $12.00 | $10.00 |
| Primary output | Typed decisions and probabilities | Generated text and structured output | Generated text and structured output |
| Best fit | Routing, classification, scoring, verification | Reasoning, code, tools, broad generation | Reasoning, writing, code, agents |
| Not designed for | Chat, prose, code, long explanations | Ultra-cheap focused decisions | Ultra-cheap focused decisions |
Pricing uses current standard API rates. Real costs vary with output length, caching, batch processing, long-context tiers, gateways, and regional options.
INDEPENDENT JEV REVIEW
A constrained output can be structurally valid and still be the wrong judgment. Test accuracy and confidence thresholds on your own data before automating consequential decisions.
Review the official model limitsJev does not write replies, explanations, code, or creative content. Pair it with an LLM when you need generated language.
The answer stays inside your declared schema, but the selected option or probability can still be wrong.
TypeSafe says other languages, including CJK scripts, are supported but may not perform equally well.
Use thresholds, deterministic checks, human review, and task-specific evaluation instead of treating confidence as a guarantee.
JEV AI FAQ
No. jev-ai.dev is an independent, unofficial calculator and guide. TypeSafe AI publishes Jev and maintains the official website and documentation.
Jev is TypeSafe AI’s first System One model. It accepts text or structured state and returns typed Choice, Score, or Noul decisions with probabilities instead of free-form prose.
A System One model makes fast, focused judgments that software can use directly. It evaluates shared state against typed questions and returns constrained answers and probabilities rather than generated prose.
Jev 1.13 is currently priced at $0.042 per million input tokens. Output tokens are free. Gateway fees, taxes, discounts, and future pricing changes are not included.
Jev API usage is not generally free: TypeSafe lists a per-input-token price. This independent cost calculator is free and does not call the Jev API.
You can use this playground and schema builder free without an account. It creates valid Jev request JSON locally, but it does not run live Jev inference. A live call requires a provider account and API key.
Use the TypeSafe Console for a direct key, or create a key with Vercel AI Gateway or OpenRouter and use that provider’s Jev model ID.
Jev is currently listed on Vercel AI Gateway and OpenRouter, which use their own accounts and API keys. Provider access and availability can change, so verify the current model page before integrating.
Jev cannot return a value outside the answer shape you define, but schema compliance is not the same as factual correctness. Its judgment can still be wrong, and calibration does not guarantee any individual answer.
Choice selects one option from a fixed set. Score evaluates ordered levels. Noul returns the probability that a yes-or-no statement is true.
No. Jev is built for focused typed decisions. GPT and Claude remain better suited to chat, open-ended reasoning, writing, code generation, and explanations.
Alternatives include structured-output calls to general LLMs, dedicated classification models, embeddings plus a classifier, and deterministic rules. The right choice depends on accuracy, latency, cost, and whether you need generated explanations.
Jev is a poor fit for free-form text, creative work, coding, long explanations, images, audio, video, and tasks that require slow multi-step reasoning inside one answer.
TypeSafe currently documents 250,000 tokens per second, 1,200 requests per minute, a 64K total request budget, and a 32K limit for state plus the longest question. Rate limits may change without notice.
It applies published standard input-token rates to the token volume you enter. It does not estimate output usage, tokenizer differences, caching, batch discounts, taxes, gateway fees, or model accuracy.
LAST UPDATED
Initial release with the local Jev request playground, browser-based cost calculator, copy-paste SDK examples, current Jev 1.13 pricing and limits, model comparison, limitations, and FAQ.
Want Jev updates and new tools? Join by email
Check the latest TypeSafe documentationSpot an outdated price or limit? Email a correction