Jev is live on Zorveus

Jev is live on Zorveus
TypeSafe AI's flagship model typesafe/jev-latest is live across the Zorveus gateway, official SDKs, and connected application endpoints. You can view its latency profiles, pricing, and live cURL templates in our Model Catalog.
Founded by Diogo Almeida (co-inventor of RLHF and InstructGPT at OpenAI) alongside Erik Gafni and Sasha Sheng, TypeSafe AI built Jev around a concept they call "System One". The name borrows from Daniel Kahneman's distinction between fast, intuitive decisions (System 1) and slow, deliberate reasoning (System 2).
Standard large language models operate like System 2. They generate text token by token. When you ask them to classify a support ticket, route a payment error, or evaluate customer intent, you write prompts asking for JSON, wait for tokens to finish streaming, and handle markdown parse errors when backticks show up in the payload.
Jev is non-autoregressive. You provide an input state (raw text or JSON) and a map of questions. The model evaluates the entire question set in a single parallel forward pass, returning typed answers and calibrated confidence scores in tens of milliseconds.
Specifications & economics
| Metric | Specification |
|---|---|
| Model ID | typesafe/jev-latest |
| Model type | Non-autoregressive System One decision engine |
| Evaluation latency | 70 ms to 500 ms |
| Pricing | $0.042 per million input tokens (output tokens free) |
| Primitives | Choice, Noul, Score |
| Gateway endpoint | https://api.zorveus.com/typesafe/v1/systemone |
| Catalog listing | zorveus.com/models?q=jev&provider=typesafe |
| Primary strengths | Request routing, ticket triage, intent detection, content moderation |
| Billing | Automatic deduction from Organization Wallet with spend caps |
Three decision primitives
Jev replaces prompt text generation with three typed question types:
- Choice. Categorical classification. You define the criteria for each category key. Jev returns the selected option along with candidate probabilities and confidence scores.
- Noul. Binary probability. The name comes from "no/yes". It returns a continuous probability between 0.0 and 1.0 representing the likelihood that a statement is true.
- Score. Ordinal scale rating. You provide an ordered rubric. Jev returns a normalized score and level distributions.
Because the output shape is determined by the request schema, responses never fail JSON validation.
Using typesafe/jev-latest in Zorveus
Zorveus proxies TypeSafe directly at https://api.zorveus.com/typesafe. You use your existing ZORVEUS_API_KEY for authentication. You can also pass custom tracking headers like X-Zorveus-External-User-Id to monitor per-user usage and enforce credit limits.
You can run interactive test queries directly from the Zorveus Models Catalog or select your preferred integration method from the dropdown below:
Why System One matters in software pipelines
Most automated agent loops do not need paragraphs of prose to take their next action. They need to know if an error is fatal, whether an input contains sensitive data, or which handler function to invoke.
Using autoregressive models for these decisions introduces real drawbacks:
- High latency. Waiting 1 to 3 seconds for a generative model to finish its thought introduces delays in automated user-facing flows.
- Format fragility. Autoregressive outputs can fail when models wrap JSON inside markdown blocks or drift across version updates.
- Excessive token spend. Paying for generation tokens on simple classification tasks adds up quickly at high query volumes.
By executing decisions in a single pass without token generation, typesafe/jev-latest delivers responses in 70 to 500 ms at $0.042 per million input tokens.
Zorveus Edge features
When routing typesafe/jev-latest through Zorveus:
- Unified authentication. Access TypeSafe models using your existing Zorveus API keys alongside OpenAI, Anthropic, Google, and open-weight models.
- Hard spend caps. Set monthly and daily dollar limits on your API keys so background automation cannot exceed budget.
- End-user attribution. Attach
X-Zorveus-External-User-Idto any request to track token usage and spend down to individual users. - Audit logs. Inspect payloads, latencies, and status codes in real time from your Zorveus organization dashboard.
typesafe/jev-latest is available in the Zorveus Model Catalog to all Zorveus organizations starting today.