← Back to research
·11 min read·company

TypeSafe AI

TypeSafe AI's Jev returns typed decisions and probabilities for software. Review its API, pricing, benchmark limits, and fit for automated workflows.

Key takeaways

  • Jev supplies typed judgments for application code; it does not generate replies, code, or reasoning explanations.
  • Schema validity does not guarantee a correct decision, and the confidence field is distinct from an answer's probability.
  • Published launch pricing is $0.042 per million input tokens with no output-token charge; access is described as early access.
  • AI decision APIs is a useful category for this product, with classification services as alternatives and agent platforms as adjacent infrastructure.

FAQ

What is TypeSafe AI's Jev?

Jev is a model that evaluates application state against developer-defined questions and returns choices, scores, or yes/no probabilities. The surrounding software decides what to do with those answers.

Does Jev eliminate hallucinations?

TypeSafe's claim concerns outputs matching the supplied answer schema. A valid label can still be wrong, so applications need their own accuracy evaluation and escalation policy.

How much does Jev cost?

As checked September 16, 2026, TypeSafe advertises $42 per billion input tokens, equivalent to $0.042 per million, and no output-token charge. Launch materials describe early access; confirm account limits and terms.

Is TypeSafe a coding agent or an inference platform?

It is a model developer offering a decision API. Its coding-agent skill helps developers integrate that API; it does not turn Jev into a coding agent or a general model-hosting platform.

Executive Summary

TypeSafe AI builds models for decisions inside software. Its first public model, Jev, accepts a shared state and typed questions, then returns values and probability distributions that an application can use directly. Classification, routing, and scoring are natural applications; an application still owns the workflow and its side effects.[1]

The interesting proposition is inexpensive judgment that can run repeatedly inside a larger system. The evaluation question is whether those judgments are accurate enough for the actions they control. Jev does not write prose or code, and TypeSafe's documentation explicitly separates population-level calibration from the correctness of an individual answer.[2]

AttributeDetail
CompanyTypeSafe AI; founded in 2024, headquartered in San Francisco.[3]
FoundersDiogo Almeida, Erik Gafni, and Sasha Sheng.[3]
Funding$40 million seed round led by DCVC, announced September 15, 2026.[4]
ProductJev, the company's first System One model.[2]
AccessLaunch announcement describes early access for selected developers; documentation exposes a console, playground, and API-key workflow.[3][5]
Review scopePublic documentation, repositories, and published tests checked September 16, 2026. No authenticated Jev API test was performed for this report.

Product Overview

A request contains the information to evaluate and the questions the developer wants answered. The answer space is supplied by the application. That makes a ticket-routing decision or document score a better fit than asking Jev to invent a response.[1]

Three decision primitives

PrimitiveReturned resultUseful application
ChoiceA selected option, probabilities across options, and confidenceChoose a department or document category
ScoreA probability-weighted score, level descriptions, probabilities, and confidenceRate severity against a defined rubric
NoulA number from 0 to 1 estimating whether a statement is true; no separate confidence fieldDetect a refund request or another independent condition

These are the documented response types. Score can fall between rubric levels. Choice requires considering whether the supplied options cover the input, including an explicit fallback where appropriate.[6]

Product surfaces

SurfaceRole and boundary
PlaygroundInteractive state/question experiments after login.[5]
HTTP APIPOST https://api.typesafe.ai/v1/systemone, using a bearer API key and a model such as jev-latest.[7]
Client librariesPython and JavaScript/TypeScript SDKs with typed requests and retry handling.[8]
Coding-agent skillSupplies API and workflow guidance to tools such as Claude Code and Codex. It helps build an integration; it is not an autonomous agent runtime.[9]

Public docs do not establish unrestricted account access. The launch announcement and homepage still describe a waitlist, while the quickstart describes obtaining keys. This review did not verify whether a new account can immediately make requests.[3][10][5]


Technical Architecture

TypeSafe describes a new architecture, parallel sampling, and Reinforcement Learning for Calibrated Decisions (RLCD). Those are vendor descriptions, not independently reproduced findings in this review.[11] The inspectable contract is clearer: state can be text, an object, or an array; answers are keyed to the submitted questions, and the response reports token usage.[7]

Questions sharing a state can run together. If one answer determines what information must be fetched next, code must make a subsequent request. The primitives documentation gives an approximate shared request budget of 32,000 tokens; that budget includes state and questions, not just the document being classified.[6]

Probability and confidence are different

For Choice and Score, confidence is derived from the shape of the probability distribution. A concentrated distribution produces greater confidence than a spread-out one. It is not a second independent model judgment, and a confidence value of 0.9 should not automatically be interpreted as a measured 90% success rate. Noul exposes its yes/no probability directly.[12]

Example: triaging an engineering support ticket

An illustrative integration would:

  1. Assemble the ticket, relevant account facts, and routing policy into the state.
  2. Ask independently which team owns the issue, whether it describes a bug, and how severe the reported impact is.
  3. Apply ordinary code to combine the results, ignore irrelevant answers, and send ambiguous cases to review.
  4. Hand an accepted engineering issue to the execution system that can investigate and propose a fix.

This follows the documented architecture of narrow judgments inside a workflow controlled by code.[13] The fourth step is an application design choice, not a built-in Jev action. Evaluate thresholds on labeled tickets before enabling automatic routing; the documentation also recommends tuning them to domain performance.[12]

The application still needs error handling. TypeSafe documents validation failures, rate limits, and overload responses; SDK retries help with transient failures but do not determine the correct business outcome.[7]


Strengths

  • A useful software interface. Defined answer spaces and probabilities make the output easy to inspect and combine with application logic.[1]
  • Explicit control over the workflow. Developers can keep permissions, deterministic checks, and side effects in code while using the model for the judgments that require semantic interpretation.[13]
  • Practical baseline tooling. TypeSafe publishes an LLM adapter that supports native structured outputs, probability or discrete answers, and corrective retries. That gives teams a concrete starting point for comparing implementations.[14]
  • Integration guidance beyond a demo. The agent skill documents question design and threshold review, including common mistakes such as invented response fields.[9]

Cautions

  • A valid answer can be wrong. The launch's zero-hallucination claim concerns schema matching. It does not establish semantic accuracy or eliminate missed conditions.[11]
  • Calibration must survive the actual workload. TypeSafe itself says calibration concerns groups of predictions. Domain shifts, incomplete context, and the available labels still require evaluation; a well-formed result alone is insufficient evidence to act.[2]
  • No generated explanation or reply. A workflow that must write an email, propose code, or explain its reasoning needs another component.[2]
  • Service readiness needs account-level verification. This review did not establish production quotas, an SLA, pinned-model availability, or a self-hosted Jev deployment. The public API documents rate-limit and overload behavior.[7]

Reading the performance claims

The headline 193.6× faster and 444.6× cheaper figures are TypeSafe's own workflow results. Its launch post says these may be toward the upper end of real-world gains, notes geographic latency effects, and acknowledges that its probability-producing LLM wrapper is slower and more expensive than asking for discrete answers.[11]

The evaluation site covers four workflows and averages their results equally. Reference labels come from the combined responses of GPT-6 Astra and Claude Fable 5.1 at high thinking; other configurations use provider-default reasoning. This measures agreement with model-derived references under a particular harness, rather than demonstrated correctness against independently labeled outcomes.[15]

For a purchasing decision, compare the production alternatives at equivalent acceptable error rates: correct-action cost, latency distribution, manual-review volume, and costly misses. Include a discrete-answer baseline when probabilities are unnecessary. The published adapter supports both answer modes.[14]


What Developers Say

In a September 15, 2026 hands-on report, Mike Taylor, head of evals at Every, described obtaining 777 judgments across 37 documents in under 0.7 seconds for an estimated quarter of a cent. He also said he would want a more thorough accuracy check before production use.[16]

The same report describes Every CEO Dan Shipper's smaller test of four writing checks across 12 synthetic passages. Jev's median time was 0.35 seconds per passage versus 8.83 seconds for Fable 5.1 at high effort, but Jev caught six of seven intended defects and Fable caught all seven. That is useful early evidence of a speed/quality tradeoff, not a broad production benchmark or a test performed by this site.[16]


Pricing & Licensing

Published pricing checked September 16, 2026:

ItemPublished price or availability
Input$42 per billion tokens, equivalent to $0.042 per million.[10]
OutputNo output-token charge in the launch pricing.[11]
Access and production termsEarly-access announcement; confirm limits, billing, and commercial terms for the account.[3]

At that input rate, one million requests averaging 1,000 billable input tokens would cost $42 in model input charges. This is arithmetic, not a measured invoice; question text and context must be included in the token estimate. Retries, downstream generators, infrastructure, and human review affect the full workflow cost.[10][7]

Licensing model: Hosted model access, with an MIT-licensed Python client. The SDK's license does not license Jev's model weights or establish a self-hosting option.[17]

Data handling: The privacy policy covers the API and playground and states that customer input is not used to train or fine-tune models. It also permits retention of personal data while reasonably needed for service or business purposes. That is not a zero-retention commitment; confirm the applicable service agreement for sensitive workloads.[18]


Competitive Positioning

Where the category fits

AI decision APIs is a useful category: services that return machine-consumable classifications, scores, or probabilities for application-controlled workflows. TypeSafe's System One terminology describes its approach, while the broader buying decision already includes other products. Nyckel, for example, exposes classification endpoints returning labels and confidence, with annotation and model-improvement workflows.[19]

The site's AI inference platforms comparison focuses on serving platforms and gateways and excludes individual model laboratories. Jev is adjacent to that category. Its integration skill likewise does not make TypeSafe an agent framework or an agentic skills framework.[9] A dedicated decision-API comparison should evaluate task coverage, calibration evidence, customization, latency, cost per correct decision, and deployment terms.

Alternatives and adjacent products

ApproachDecision guidance
TypeSafe JevEvaluate for multiple developer-defined judgments over shared state, with decisions combined in application code.[6]
NyckelEvaluate when a managed classification pipeline with labeled samples, reviewer feedback, and model improvement fits better.[19]
LLM with structured outputsKeep as a baseline when the surrounding workflow also needs generation or reasoning. TypeSafe's adapter supports controlled comparisons rather than assuming every structured-output baseline behaves identically.[14]
Tembo, adjacent execution platformEvaluate when the job is running and coordinating coding agents with repository context, isolated execution, and reviewable changes.[20]

Disclosure: Ry Walker is Tembo's CEO and co-founder.

Tembo addresses what happens when engineering work needs execution across repositories and tools. Jev supplies narrower judgments that software can use before, during, or after such work. An application could use a decision API to triage incoming issues and then send selected work to an agent platform; that is a proposed architecture, not evidence of a native TypeSafe–Tembo integration. Tembo's value in that design is execution, coordination, and human review, while the decision component still needs its own evaluation.[20][13]


Ideal Customer Profile

Best fit: Teams with repeated classification or scoring decisions, a defined set of outcomes, and enough examples to measure error rates and choose escalation thresholds. Workloads where several independent questions share context are particularly worth testing.[6][12]

Poor fit: Teams seeking a complete coding agent, a conversational assistant, generated explanations, or a model whose output can be accepted without evaluation. Jev supplies a decision component; application design remains the developer's responsibility.[2]


Viability Assessment

DCVC's announced $40 million seed investment establishes meaningful financial backing, but does not establish runway, revenue, or production reliability.[4] The launch is recent, and this review did not verify customer counts, retention metrics, or long-running deployment results.

The next useful evidence is workload-specific accuracy and calibration, stable operating limits, and repeatable comparisons against economical baselines. The early independent tests justify experimentation while leaving that production case open.[16]


Bottom Line

TypeSafe is worth evaluating where software needs many narrow judgments and developers can measure the consequences of getting them wrong. The API contract is concrete; the strongest reliability and performance conclusions still require testing on the intended workload.

Recommended for: Measured pilots of classification, routing, and rubric-based scoring inside applications.

Not recommended for: Replacing a general coding agent or treating schema correctness as permission to automate every action.

Outlook: A credible entry in AI decision APIs, with a distinct model approach. Adoption should follow demonstrated decision quality and operational performance, not the largest launch multiplier.


Research by Ry Walker Research • methodology