Jev AI Hub
Start Learning

Independent Jev developer hub

Jev by TypeSafe AI

Independent guides to TypeSafe Jev — the System One model for typed decisions, not a chat LLM. Learn the API, tutorials, and how to use Jev in code.

Real request shape from TypeSafe's quickstart

{
  "model": "jev-latest",
  "state": "Hi, I've been trying to connect my Stripe account for 3 days and the integration keeps failing. I'm losing sales. Please help ASAP.",
  "questions": {
    "department": {
      "type": "choice",
      "instructions": "Which team should handle this",
      "criteria": {
        "billing": "Payment or subscription issues",
        "technical": "Bugs or integration problems",
        "sales": "Pricing or account questions"
      }
    },
    "is_urgent": {
      "type": "noul",
      "instructions": "The message conveys urgency or time-sensitivity"
    }
  }
}

What is Jev?

Jev is a System One Model developed by TypeSafe for fast structured decisions such as classification, routing and scoring. You send a state — a string, JSON object, or array of text — plus typed questions. Jev returns answers your code can use directly: a selected option, a rubric score, or a yes/no probability. It is not a chatbot and it does not write replies. TypeSafe is the vendor; Jev is the model; System One is the model class.

Learn Jev

Jev Examples

Browse examples

Developer Tools

Popular Guides

Latest Jev Updates

Changelog

Jev 1.13 jaggedness notes published

TypeSafe documented known failure modes for jev-1.13, including literal reading, weak numeric precision, date comparison, context rot, and generation limits.

TypeSafe exits stealth with Jev as its first public model

Third-party reporting described TypeSafe as a San Francisco lab leaving stealth with seed funding and Jev as its first System One model. Treat company-size and funding figures as third-party reports, not independently verified facts.

Current public model remains jev-1.13.0

Official models documentation lists jev-1.13.0 as the current version. Aliases jev-latest and jev-preview both pointed at that version when last verified. Input pricing was listed at $0.042 per million tokens, with output tokens free.

FAQ

What is Jev?

Jev is TypeSafe's flagship System One model. You send a state and typed questions; it returns structured answers, probabilities, and, for Choice and Score, confidence.

What is TypeSafe AI?

TypeSafe AI is the company that builds Jev. TypeSafe is the vendor; Jev is the model; System One is the model class.

Is Jev AI Hub the official TypeSafe site?

No. Jev AI Hub is an independent educational resource. It is not affiliated with or endorsed by TypeSafe.

Is Jev an LLM?

No. Jev understands natural-language input but does not generate prose, code, or explanations. It returns Choice, Score, and Noul answers your code can branch on.

How do I use Jev?

Get access (TypeSafe waitlist/console, or OpenRouter / Vercel AI Gateway), set an API key, and POST state plus typed questions. Start with How to Use Jev.

What are Choice, Score, and Noul?

They are Jev's three question primitives: pick one option, rate on a rubric, or return a yes/no probability.

How much does the Jev API cost?

When last verified, official docs listed $0.042 per million input tokens, with output tokens free. Check the pricing page and TypeSafe's models page before budgeting.

Can I fine-tune Jev?

Official docs say Jev is not fine-tuned or LoRA-adapted with customer data. You shape answers through state, instructions, and criteria.