TL;DR

  • TypeSafe currently prices Jev 1.13 by input tokens and lists output tokens as free.
  • Published benchmark gains are first-party results on System One-shaped workflows.
  • End-to-end cost includes retries, multiple stages, review load, and downstream models.
  • Pin the tested version and re-run the evaluation before changing models.

TypeSafe’s launch case for Jev rests partly on economics: a model that returns bounded decisions can avoid sequential text generation and answer several independent questions in one request. The company publishes low input-token pricing and large gains on selected workflows.

Those numbers are worth testing. They are not a substitute for testing.

What does Jev currently cost?

TypeSafe’s models page currently lists Jev 1.13 at:

Item Published value
Versioned model jev-1.13.0
Input price $0.042 per million tokens
Input price $42 per billion tokens
Output tokens free
Token rate limit 250,000 tokens per second
Request rate limit 1,200 requests per minute

These values were checked on September 18, 2026. The same page warns that rate limits are adjusting dynamically. Pricing, aliases, quotas, and plan terms can also change, so the official page should remain the budgeting source.

The direct token price is only one line in a workflow budget. Include retrieval, preprocessing, retries, review, logging, storage, and any generative model used before or after Jev.

Why are output tokens free?

Jev does not generate an open-ended token sequence. It returns the typed primitive answers defined by the request. TypeSafe prices the current model on input tokens and lists output tokens as free.

That does not mean an application has no output work. It still receives distributions, confidence values, usage information, and model metadata. “Free output tokens” is a pricing rule, not a claim that the surrounding system has zero response or compute cost.

What latency does TypeSafe claim?

The launch announcement presents Jev as a low-latency decision model and reports measurements across TypeSafe’s evaluated workflows. The documentation also says independent questions in one request run in parallel and that adding questions barely changes response time.

Actual end-to-end latency includes:

  • network distance to the API
  • input size
  • current service load
  • retries after rate limiting or overload
  • preprocessing and retrieval
  • sequential Jev stages
  • downstream tool or model calls
  • human review for uncertain cases

Measure percentile latency, not only the average. An interactive interface may care about p95 and p99 behavior, while a background classification job may care more about throughput and retry stability.

What do the headline benchmark gains compare?

TypeSafe’s announcement reports very large speed and cost gains across selected code-based workflows. The company also explains several caveats: the workflows favor System One-shaped questions, the evaluation design can carry author bias, and the largest gains should not be assumed universal.

The comparison is most informative when the task genuinely needs a bounded decision. It does not show that Jev can replace an LLM for writing, coding, research, or extended reasoning. A decision-only model and a text generator often produce different outputs.

Use the claim to form a hypothesis:

On this high-volume classification or scoring step, can Jev meet our error budget at lower latency or cost than the current method?

That hypothesis can be tested.

What do the cookbooks demonstrate?

TypeSafe publishes reproducible patterns with measured examples. Two useful ones are:

  • Parallel questions, which reports that one batched 13-question request was 12.2 times cheaper and 10 times faster than separate calls in that experiment, with no observed answer change.
  • Re-ranking, which reports improved top-k retrieval accuracy on the cookbook’s legal dataset after Jev reranking.

These are first-party experiments on named tasks. They are more useful than an unexplained universal number because a team can inspect the setup and recreate the relevant pattern.

Do not carry the multiplier into a business case without reproducing the request shape. Savings from parallel questions will differ with state size, number of questions, network overhead, and any sequential dependencies.

Calculate the full workflow cost

A simple estimate starts with input tokens:

monthly input cost =
  requests per month
  × average input tokens per request
  × price per input token

Then add:

  • retry rate
  • extra calls for dependent decisions
  • first-stage retrieval or filtering
  • generative-model calls
  • manual-review volume and handling time
  • observability and storage

A cheaper model call can create a more expensive operation if uncertainty sends too many cases to people. The opposite can also happen: a review gate may cost more per flagged case but prevent an expensive automatic mistake.

Design a fair evaluation

Build the comparison around the job, not provider marketing.

  1. Select representative, labeled production examples.
  2. Define the allowed output and error costs.
  3. Give each system the same necessary state.
  4. Tune each approach without leaking test labels.
  5. Measure task correctness by class and consequence.
  6. Measure p50, p95, and p99 latency from the deployment region.
  7. Record token use, retries, failures, and review rate.
  8. Compare total workflow cost at the expected volume.

If the current LLM also writes a response, separate the routing decision from generation. Compare Jev with the part of the LLM workflow that performs the same job.

Watch aliases and rate limits

jev-latest is convenient during exploration. TypeSafe’s models page says aliases can move to a newer release, changing answers without an application code change.

After evaluation, pin jev-1.13.0 or the version tested at that time. Log the model returned by the API. Before upgrading, replay the labeled set and compare confidence bands as well as final choices.

The API reference documents 429 rate-limit and 529 overload responses. SDK retries help with brief pressure, but throughput planning should include backoff, queues, and a safe failure policy.

The decision to adopt Jev

Jev’s published price makes experimentation inexpensive. Adoption should still be based on whether it improves a bounded workflow under real conditions.

The strongest case is a high-volume semantic decision with known outcomes, measurable labels, and a safe fallback. The weakest case is using a low token price to justify forcing an open-ended task into the wrong interface.

For architecture, read Jev vs. LLMs. For rollout controls, see Jev confidence in production.

Sources

FAQ

How much does Jev cost?
TypeSafe's models page currently lists Jev 1.13 at $0.042 per million input tokens, with output tokens free. Pricing can change, so check the official models page before budgeting.
How fast is Jev?
TypeSafe reports low-latency operation and publishes workflow measurements, but actual latency depends on request size, network location, load, retries, and the surrounding application.
Are Jev benchmark results independent?
The headline results in TypeSafe's launch material and cookbooks are first-party evaluations. Teams should reproduce the relevant workflow on their own labeled data.