Skip to main content

Jev on OpenRouter

Jev is a structured decision model from TypeSafe, and the first of its System One models. Send it application state and one or more typed questions, and get back a typed answer with probabilities instead of generated text. typesafe/jev-1.13 (or the ~typesafe/jev-latest alias) is available to anyone with an OpenRouter API key, and billed to your OpenRouter account. This is the index for every Jev resource on OpenRouter, and your entry point to the upstream TypeSafe documentation.

Jev Tutorial

Step-by-step quickstart. Make your first Choice, Noul, and Score call with curl, TypeScript, or Python.

Jev model page

Current pricing, context length, provider, and data policy.

Decisions API reference

Full request and response schema for POST /api/alpha/decisions.

Jev SDK for TypeScript and Python

Point the official TypeSafe SDK at OpenRouter with a one-line base URL change.

What Jev is

Jev is a System One model. System One models make fast, structured decisions for software. They are suited for any routing, classification, verification, ranking, or other decision point in your app where a predictable typed answer matters more than generated prose. Jev answers three kinds of question, called primitives: Because the output is typed, code branches on it directly. Jev does not produce reasoning traces, explanations, or free-form text. It is not a drop-in replacement for a chat model. It replaces the prompt-and-parse step where you were asking an LLM a narrow question and extracting a label from its answer. Below are the key facts, current as of the Jev model page:
  • Model ID: typesafe/jev-1.13. The ~typesafe/jev-latest alias tracks the newest release.
  • Input: text, as a state object plus your questions. Context length is 32,000 tokens.
  • Output: typed decisions. Output tokens are free. You pay per input token at the price on the model page.
  • Provider: TypeSafe, routed through OpenRouter.

Get access to Jev

There’s no waitlist or separate TypeSafe account. Just create an OpenRouter API key, and then follow the Jev tutorial. Your first call takes under five minutes.

Two ways to call Jev

Jev is exposed via two OpenRouter API surfaces, the Decisions API and the System One API. Both surfaces require the same OpenRouter API key and are billed to the same OpenRouter account. The Jev SDK guide documents the System One path. The Decisions API reference covers the Decisions path.

Cookbooks

Step-by-step recipes with runnable code:
  • Gate Agent Tool Calls with Jev checks each risky agent tool call against the user’s request so safe calls run, unsupported calls are refused, and only ambiguous calls pause for a human.
  • Cut LLM Cost with a Jev-Verified Cascade drafts with a cheap model, verifies the draft against retrieved context with Jev, and escalates to a stronger model only when the check fails.

Interactive demos

Jev Lab runs Jev live in the browser across several patterns, including ticket triage, agent oversight, and structured extraction. Each demo shows you the state, the questions, and the raw probabilities Jev returns.

TypeSafe documentation

TypeSafe maintains the concept, prompting, and SDK documentation for Jev. These are the pages to read when designing questions and thresholds:

Frequently asked questions

Is Jev an LLM? No. Jev is a System One decision model. It returns typed answers, with probabilities associated with them. Jev doesn’t return text, reasoning, or explanations. When you need prose, use a chat model. When you need a decision that your code can act on, use Jev. Who makes Jev? TypeSafe. OpenRouter routes your request to TypeSafe, then bills it to your OpenRouter account. How much does Jev cost? Jev charges for input tokens, and output tokens are free. To find the current input token price, see the Jev model page. Every Jev response includes a usage.cost field that tells you the cost of the response in USD. What is Jev’s context window? 32,000 tokens. That’s the state you send plus the questions. Do I need a TypeSafe account or API key? No, an OpenRouter API key authenticates both the Decisions API and the TypeSafe SDK pointed at OpenRouter. Can Jev explain its answers? No, Jev doesn’t return the reasoning it goes through to make its decision. It returns probabilities. If you need a written justification for the decision, you can use Jev to make the decision, then use a chat model to explain it, or if the confidence is low, you can route that case to a human. Where are the Jev docs? It’s all here on OpenRouter. Once you’re in, use the TypeSafe documentation to dig deeper into the concepts and for the SDK reference.