Jev PlaygroundPricing

TYPESAFE JEV · API COST

Jev Pricing

Plan the model cost of your next decision workflow.

Pricing last verified:

Jev input price
$0.042 / 1M input tokens
Output
$0.00 current output-token charge

Vercel currently displays the rate rounded as $0.04 / 1M input tokens. Calculations here use TypeSafe’s precise $0.042 rate.

PLAN YOUR WORKLOAD

Jev Cost Calculator

Runs in your browser. No Jev calls.

Whole numbers, 0–1,000,000,000.

Whole numbers, 0–1,000,000. Include state and questions.

A year = 365 days = 12 average months. Custom totals are not annualized.

Example workloads

Illustrative presets, not official or typical Jev usage.

ESTIMATED JEV MODEL COST · USD

$4.20

per month

Total requests · per month
100,000
Total input tokens
100,000,000
Daily estimate
$0.138082
Monthly estimate
$4.20
Yearly estimate
$50.40

Requests × average input tokens ÷ 1,000,000 × $0.042

Output tokens: $0.00 at the current rate.

Model cost only, at steady usage. Calendar months vary; displayed estimates are rounded. Input bounds are calculator limits, not model capacity. See what is excluded ↓

01 / FIRST-HAND MEASUREMENTS

What our real Jev test calls used

Our Phase 0 validation sent three real requests to typesafe-ai/jev through Vercel AI Gateway on September 18, 2026. These are three specific test requests, not a general average for Jev. The input costs below are calculated at the current published USD rate.

Boolean

296 input tokens

$0.000012432

Estimated model input cost / call

Choice

378 input tokens

$0.000015876

Estimated model input cost / call

Score

383 input tokens

$0.000016086

Estimated model input cost / call

Recorded during our initial technical validation; these are not the later production examples in the API guide. Token counts come from the saved SDK responses. This is a small functional sample, not a cost or performance benchmark.

02 / WHAT YOU PAY FOR

Input length sets the model cost

Count the complete request, not just the customer’s message. Input tokens can include the state being evaluated, question instructions, Choice labels and descriptions, Score rubric definitions, and each additional question. One user click does not imply a fixed number of tokens—or even a single API request.

Multiple questions share context

Shared State can simplify dispatch, but each question’s instructions and options add tokens. Batching is not a guaranteed saving; measure the complete request.

Reported output is not a bill

TypeSafe currently publishes output tokens as free. An SDK response can still report an output-token count: usage measurement and pricing are separate. At the verified rate, the model estimate is driven by input tokens. Free output is a current policy, not a promise about future prices.

03 / WORKED EXAMPLES

From ten thousand calls to ten million

Illustrative workloads at $0.042 per million input tokens, equivalent to $42.00 per billion. These are model input costs for the total call counts shown, with no assumed time period.

Calculated Jev model input costs · USD
RequestsTokens / requestTotal input tokensInput cost
10,0005005,000,000$0.21
100,0001,000100,000,000$4.20
1,000,0001,0001,000,000,000$42.00
10,000,0001,50015,000,000,000$630.00

The calculator and every cost example on this page use the same rate and calculation. If retries create more calls, include them in your request count.

04 / THE REST OF YOUR BUDGET

What the calculator does not include

This estimates Jev model charges. It does not price an entire application or guarantee your account’s bill.

  • Vercel hosting and other AI models
  • Databases, storage and observability
  • Retries beyond the entered request count
  • Application engineering and human review
  • Taxes, optional Gateway features and account-specific terms

Budget for useful decisions: retries, human review and downstream errors can exceed the model bill. Track input tokens, API cost, decision quality, review rate, retry rate and latency. Confirm your provider account terms; Jev Playground does not resell API access.

05 / REPLACE ASSUMPTIONS WITH USAGE

Measure your own requests

After a successful server-side evaluation, AI SDK 7.0.105 exposes result.usage.inputTokens and result.usage.outputTokens. Either count can be undefined. Treat missing usage as unknown; do not silently record it as zero.

// After a successful evaluate(...) call in your server code:
const inputTokens = result.usage.inputTokens;
const outputTokens = result.usage.outputTokens;

if (inputTokens !== undefined) {
  console.log({ inputTokens, outputTokens });
} else {
  console.log("Input token usage was not reported.");
}

Sample short and long inputs from each workflow. Use total measured input tokens divided by measured requests to update the calculator’s average, and track requests with missing usage separately. Keep raw customer state out of usage logs.

Need the integration code?

Use our validated request shapes and response handling.

06 / SOURCES & VERIFICATION

Where the price comes from

Pricing last verified: . TypeSafe publishes $0.042 / 1M input tokens and no output charge. Vercel’s webpage displays $0.04; its live model catalog gives $0.000000042 per input token, which matches the precise TypeSafe rate. The shorter webpage display is not evidence of a price cut.

Usage field names were checked against our installed AI SDK and saved real responses. Prices and billing terms can change. This independent calculator is a planning estimate, not a provider quote.