Reviewed by Jonathan West · Updated Sep 22, 2026

How to Use Jev

Getting access, making your first API call, writing a question Jev can answer, and reading the score that comes back.

Reviewed by Jonathan West · Updated Sep 22, 2026

To use Jev, developers submit structured decision prompts to an OpenAI-compatible endpoint hosted by TypeSafe AI using an early-access API key or the browser playground.

Jev is a scoring model developed by TypeSafe AI founder Diogo Almeida, formerly of OpenAI.

At Layer3Labs, we build and integrate automation workflows for growing teams, and selecting between scoring models and generative models is often the deciding factor in workflow reliability.

TypeSafe AI released Jev in early access on September 15, 2026. The service offers no free tier and no trial credits, so every API call bills against your account from day one.


Access Methods and Environment Setup

Access to Jev requires an approved early-access invitation from TypeSafe AI or direct credential provisioning inside their browser playground.

TypeSafe AI documents no free tier and no complimentary starter credits. You must fund your account before dispatching production calls.

Edge infrastructure providers are moving quickly to support the model. Cloudflare documents a dedicated model listing in their artificial intelligence documentation, and Forbes reported that Vercel and Cloudflare moved quickly to add integration capabilities.

Community utilities have also started emerging around the interface. The open-source website audit engine JevSEO, built by maintainer epergaboni and documented at jevseo.epergaboni.com, requires Node 22 or newer to support built-in SQLite caching on your local machine.

  • Request an invitation through the TypeSafe AI waitlist portal.
  • Add billing details immediately because no free trial tier exists.
  • Review edge runtime instructions in the official Cloudflare AI documentation.
  • Verify your local runtime environment runs Node 22+ if you install community tools like JevSEO.
TypeSafe AI provides no free credits, which means every request in your testing phase requires a funded account.

API Endpoints and Request Formatting

Jev processes requests through an OpenAI-compatible /v1/chat/completions endpoint configured with a specialized questions response format.

Your HTTP POST payload must supply response_format: {"type": "questions"} alongside the primary model alias jev-latest.

Teams routing traffic through gateway platforms like Requesty can call the model strings typesafe/jev-1.13.0 or typesafe/jev-latest. That routing option remains experimental and may change without deprecation notice, so developers must verify endpoint parameters directly in TypeSafe AI documentation.

The request budget allows roughly 32,000 tokens, which TypeSafe AI translates to approximately 150,000 English characters. Responses do not stream. Jev accepts plain text exclusively, omitting image or audio inputs.

  • Target: standard HTTP POST requests sent to /v1/chat/completions.
  • Format parameter: set response_format to {"type": "questions"}.
  • Model identifier: specify jev-latest for native calls.
  • Context ceiling: roughly 32,000 tokens or 150,000 English characters per query.
  • Media constraints: plain text only with zero support for multimodal streams.
The Requesty routing configuration is experimental and may change without notice, so verify endpoint parameters directly in TypeSafe AI documentation.

Question Types and Prompt Construction

Jev structures all tasks into three distinct question primitives consisting of Choice, Score, and Noul formats.

Choice questions select one item from an explicit list capped at 255 options. The returned payload supplies the chosen label, the normalized probability distribution across all possibilities, and a computed confidence score.

Score questions locate an input on an ordered scale according to descriptive rubric levels. Noul questions evaluate binary propositions, returning a decimal probability between 0 and 1 that the condition is true without a standalone confidence field.

Question syntax must remain direct and bounded. It cannot perform arithmetic, counting, calendar comparisons, or indirect reasoning. Keep every calculation, count, and date comparison in application code.

Questions execute in parallel across the shared context text. Adding questions costs very little. Response times remain steady because the engine evaluates all questions against the state simultaneously.

  • Choice: pick one category from up to 255 options with full probability arrays.
  • Score: assign a level along an ordered rubric scale with confidence metrics.
  • Noul: compute a single probability between 0 and 1 for binary statements.
  • Parallel runtime: execute dozens of questions concurrently against a single document context.
  • External logic: handle dates, math, and counts inside your own code.
Jev cannot perform arithmetic or date logic, so all calculations must remain inside your application code.

End-to-End Support Ticket Implementation

Automating ticket triage with Jev combines category routing, severity scoring, and churn risk evaluation in a single API payload.

Consider a software support ticket where an account manager reports an integration failure and asks about contract termination terms.

Your code passes this message as context alongside three questions: a Choice question mapping to department queues (Billing, Tier 2 Engineering, Customer Success), a Score question grading user frustration (Low, Medium, High), and a Noul question checking if cancellation risk is present.

Because Jev returns typed fields rather than prose, there is no preamble to parse around. Your service receives clean floats and strings directly.

Application logic consumes the numerical distribution instantly. If the Noul churn probability exceeds 0.70, the system pings the retention desk. If frustration scores High, an urgent flag attaches to the record.

  • Context loading: supply customer support messages directly as input state.
  • Question grouping: combine routing, frustration scoring, and churn risk in one request.
  • Typed ingestion: receive clean data structures without writing regex scrapers.
  • Workflow routing: trigger database state updates based on calibrated cutoff values.
Because Jev returns typed numerical outputs instead of conversational text, your application avoids fragile regex parsing.

Reading the Score and Routing the Doubtful Cases

Interpreting Jev probabilities requires treating confidence metrics as training objectives rather than guarantees of real-world task correctness.

TypeSafe AI trains Jev using Reinforcement Learning for Calibrated Decisions (RLCD). This technique targets probability calibration and decision accuracy, but calibration does not guarantee that any single production prediction is accurate.

A Noul probability of 0.51 reflects near-total uncertainty. Application logic must not treat 0.51 as an authoritative positive signal.

TypeSafe AI publishes no official escalation threshold. Teams should adopt an uncertainty band between 0.45 and 0.55 as a practical default to route ambiguous items to human reviewers, then tune those boundaries using their own operational error data.

Internal benchmark data from TypeSafe AI's own workflow dashboard shows Jev aggregating at 67.8% accuracy compared to 74.1% for an unidentified best comparator, with task scores ranging from 61.7% to 76.0%. The model trades raw accuracy for lower latency and reduced expense. No third-party or independent benchmark of Jev exists as of September 22, 2026.

  • Calibration limits: RLCD calibration is a training target, not an operational guarantee.
  • Uncertainty handling: values near 0.50 indicate borderline states that warrant verification.
  • Threshold defaults: use 0.45 to 0.55 as a practical escalation band and tune with local data.
  • Dashboard metrics: TypeSafe AI logs Jev at 67.8% against 74.1% for an unidentified comparator.
  • Independent verification: no outside organization has published independent benchmark measurements.
Calibration is an RLCD training objective rather than a guarantee, so middle probabilities near 0.50 should route to human operators.

Execution Costs and Processing Economics

Jev pricing operates on a flat rate of $0.042 per million input tokens with zero charges for output tokens.

Consider a workload of 100,000 requests of 1,000 input tokens each. That volume totals 100 million input tokens, costing exactly $4.20 on Jev.

Now compare that total to running conversational alternatives, assuming each rival completion generates 50 output tokens. Under those exact parameters, GPT-5.6 Luna costs $26.00 ($0.20 per million input tokens and $1.20 per million output tokens), while Claude Haiku 4.5 costs $125.00 ($1.00 per million input tokens and $5.00 per million output tokens).

Filtering routine records with Jev before calling generative models saves money across large data sets. You spend $0.042 instead of $0.20 per million tokens on every record resolved early.

Latency is low. TypeSafe AI reports 70 to 500 milliseconds end-to-end latency. Founder Diogo Almeida claims speeds 20 to 200 times faster and efficiency 40 to 400 times higher than conversational alternatives. That is a vendor-reported claim. TypeSafe AI has published no official rate limits.

  • Input pricing: $0.042 per million input tokens with completely free output generation.
  • Canonical workload: 100,000 requests of 1,000 tokens cost $4.20 on Jev.
  • Comparative baseline: 100,000 requests yielding 50 output tokens cost $26.00 on GPT-5.6 Luna and $125.00 on Claude Haiku 4.5.
  • Pipeline filtering: triage with Jev to eliminate unnecessary invocations of expensive language models.
  • Vendor performance: reported latency runs 70 to 500 ms with unlisted rate limits.
Processing 100,000 standard requests costs $4.20 on Jev, compared to $26.00 on GPT-5.6 Luna when generating 50 output tokens.

Model Capabilities and Operational Tradeoffs

Selecting Jev over general large language models requires accepting strict functional boundaries in exchange for low latency and minimal token costs.

Jev cannot produce prose, explain its decisions, draft messages, or write software. It operates strictly as a decision model.

In client intake and onboarding workflows we build for professional services teams, routing failures typically occur when generative models hallucinate conversational framing around raw structured data. Bounded classifiers avoid that failure by constraining the output format to typed mathematical arrays.

Consult our overview covering Jev explained for system architecture, review our analysis of Jev limits for explicit boundaries, or examine our guide on Jev pricing for full budget models.

Who This Is Not For: Teams that need automated customer replies, content drafting, or code generation should not use Jev. Those workloads require conversational language models.

What Would Change Our Assessment: If TypeSafe AI introduces free trial tiers or if third-party testing demonstrates accuracy below 60% on standard sorting tasks, our integration advice would favor budget generative tiers.

Check TypeSafe AI documentation to confirm current endpoint parameters, fund your account, and test your first classification prompt in the playground.

  • Pick Jev for rapid sorting, ticket routing, sentiment scoring, and binary triage.
  • Pick GPT-5.6 Luna when your system must draft customer communications or generate code.
  • Pick Claude Haiku 4.5 for nuanced conversational workflows requiring fast execution.
  • Chain systems together by using Jev for initial screening before invoking generative tools.
Jev cannot write text or code, making it an architectural companion to conversational models rather than a direct replacement.

Frequently Asked Questions

  • Access requires signing up for early access on the TypeSafe AI website or creating credentials inside the browser playground. There is no free tier and there are no free credits, so you must fund your account before testing API calls.
  • Jev uses an OpenAI-compatible /v1/chat/completions endpoint. You must supply response_format with the value {"type": "questions"} and specify the model alias jev-latest.
  • No. Jev cannot write prose, generate programming code, or draft communications. It returns typed decisions, categorical distributions, and confidence scores rather than conversational text.
  • The interface supports Choice, Score, and Noul questions. Choice selects an item from up to 255 defined options, Score rates items along a defined rubric scale, and Noul evaluates binary conditions with a decimal probability between 0 and 1.
  • No. Jev cannot perform arithmetic, counting, calendar comparisons, or indirect reasoning. TypeSafe AI explicitly advises developers to compute dates, math, and counts in external application code.
  • Jev costs $0.042 per million input tokens, and output tokens are completely free. Processing 100,000 requests of 1,000 input tokens costs exactly $4.20.
  • A 0.51 probability indicates maximum decision uncertainty. Because TypeSafe AI publishes no official threshold, teams should use 0.45 to 0.55 as a practical baseline to escalate ambiguous items to human reviewers.
  • The request budget is approximately 32,000 tokens, which equates to roughly 150,000 English characters. TypeSafe AI has published no official rate limits for the service.

Need Help Structuring High-Speed AI Decision Pipelines?

Layer3Labs designs automated triage and routing architectures for business operations. We evaluate your classification accuracy requirements, benchmark token costs across model tiers, and build the error-handling paths for low-confidence results.

Book a Free Audit