Jev Bureau
Primary Entity:jev-1.13.0(jev-latest)

What is Jev AI?

Jev is a System One decision model developed by TypeSafe AI. Unlike generative large language models (LLMs) that produce autoregressive text tokens, Jev is built strictly to evaluate structured software state and output calibrated probabilities across predefined decisions.

Jev does not chat, write prose, execute agentic loops, or generate free-form text. It processes a shared context (up to 32k tokens per state) alongside discrete questions using three native evaluation primitives—Choice, Score, and Noul—at published vendor rates of $0.042 per million input tokens and $0.00 for output tokens.

Verified Technical Specifications

Source: TypeSafe Documentation (Sep 2026)
Model Identifierjev-1.13.0Alias: jev-latest
Model ClassificationSystem One Decision ModelNon-autoregressive, calibrated probability engine
Context Window Limits64,000 / 32,000 dual-budget64k total across state + all questions; 32k max for state + single longest question
Published Token Pricing$0.042 / 1M input · $0.00 outputFixed rate via TypeSafe AI & OpenRouter
Evaluation PrimitivesChoice · Score · NoulDiscrete options (≤255), ordered rubrics (2–10 levels), binary truth (0.0–1.0)
Primary API RoutePOST /v1/systemoneSupported natively by TypeSafe AI and OpenRouter

What do you need to do with Jev?

Select your specific implementation task to jump directly to verified technical references, schema specifications, and runnable code:

Minimal Request Example

The standard TypeSafe System One payload passes an application state block and one or more evaluation questions:

Bash / cURLbash
curl -X POST "https://api.typesafe.ai/v1/systemone" \
  -H "Authorization: Bearer $TYPESAFE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "jev-latest",
    "state": "User has attempted payment 3 times with card ending in 4022. IP country matches billing address. Device fingerprint unchanged. Previous transaction 12 minutes ago was approved.",
    "questions": [
      {
        "id": "fraud_action",
        "type": "choice",
        "prompt": "Recommended transaction handling action",
        "choices": ["approve", "require_mfa", "manual_review", "hard_decline"]
      }
    ]
  }'
Official endpoint: https://api.typesafe.ai/v1/systemoneView full Python & TypeScript SDK guides →