Educational answers grounded in docs and the corpus. They are not the homepage accordion. New to Jev? Start at What is Jev?.
Is Jev a ChatGPT competitor? Sourced
No. ChatGPT competes in chat and generation. Jev competes for typed decisions inside software. TypeSafe positions System One as complementary: keep an LLM for writing, coding, and open-ended work, and add Jev where you currently prompt a chat model to classify, route, score, or gate.
Can Jev write emails, explanations, or code? Sourced
No. Official docs: “jev-1.13 is not trained to generate text.” Pair the models: Jev decides “needs review” or “send this”; ChatGPT (or any LLM) writes the comment, email, or patch.
What are Choice, Score, and Noul? Sourced
They are Jev’s three question types. Choice picks one option from labels you define. Score places the state on an ordered rubric you define. Noul returns P(yes) for a yes/no question. Multiple questions can be evaluated together in one request (company: independently, in parallel).
What is RLCD? Sourced
Reinforcement Learning for Calibrated Decisions. TypeSafe’s stated training algorithm for calibrated probabilities on System One tasks. Contrast with RLHF, which trains models to produce answers humans prefer in chat. Different objective, different product behavior.
Why the name Jev? Sourced
Official launch FAQ: after William Stanley Jevons / Jevons paradox — cheaper, more efficient intelligence should increase demand, not just save cost. Prefer that official etymology over community “unknown” notes.
How do I get access? Sourced
The official homepage still shows Join Waitlist as of this guide’s compile date. Docs also describe creating an API key in the TypeSafe console once you have access. Vercel AI Gateway lists typesafe-ai/jev as a platform path — label that as a platform option, not TypeSafe’s default. This 101 does not run its own signup form.
Is there an SDK? Sourced
Yes. Official docs cite a Python package (typesafe-sdk, Python ≥ 3.10) and a JavaScript package (@typesafe-ai/sdk). There is also an evaluate path via Vercel AI Gateway. Pin snippets from official Docs when you publish — APIs move.
What’s the API endpoint? Sourced
Official quickstart: POST https://api.typesafe.ai/v1/systemone with a Bearer TYPESAFE_API_KEY. Confirm the current request body in Docs rather than freezing a sample here.
Is Jev open source or self-hostable? Sourced
No public weights. It is a managed API. Community “reproductions” are not TypeSafe.
Does it support Chinese or other CJK text? Sourced
It accepts CJK, but official models.md says English is the primary training language and other languages, including CJK scripts, are handled but not equally well. Test on your distribution and watch confidence.
Can I send images or audio? Sourced
Not yet. Official models docs: text / JSON / array of text only. No image, audio, or video understanding. Keep multimodal work on an LLM.
Will it hallucinate categories I did not define? Sourced
TypeSafe’s type-safety claim: it cannot invent outside your criteria. It can still pick the wrong allowed option. Include an “other” label if you need an escape hatch.
Is a JSON confidence field from GPT good enough to automate? Company claim
TypeSafe argues prompted confidence from RLHF chat models is often overconfident and inconsistent. RLCD targets calibration so thresholds in product code mean something you can design around. Validate on your labeled data either way.
Should I replace all of my LLM calls? Educational
No. Replace specific decision calls you currently send to an LLM. Keep the LLM for writing, coding, tool-using agents, and explanations. Litmus test: can you enumerate the valid answers before you see the case?
Can I fine-tune Jev on my labels? Sourced
Official models docs: Jev is not fine-tuned or LoRA-adapted with customer data. Same weights for all accounts. Customize via state, instructions / criteria, and composition in code.
What are the rate limits? Sourced
Published figures: 250,000 tokens/sec and 1,200 requests per minute, dynamically adjusting. Contact sales@typesafe.ai for higher enterprise limits.
Should I pin model versions? Sourced
Yes. Official docs cite jev-1.13.0 as the current ID, with aliases jev-latest and jev-preview. Aliases can move. Pin the version you tuned thresholds against.
Does a Noul question have a separate confidence field? Sourced
Official API concepts: no. For Noul, the probability is the uncertainty signal. Choice and Score expose confidence derived from the distribution shape.
Is TypeSafe the same as Cyera SafeType? Sourced
No. Cyera SafeType is a ChatGPT privacy browser extension that flags or anonymizes sensitive data. TypeSafe AI is a San Francisco lab whose product is Jev / System One Models. Different company, different category. This 101 is only about TypeSafe AI.
Who founded TypeSafe? Sourced
Official team page: Diogo Almeida (CEO), Erik Gafni (CTO), Sasha Sheng (COO). Company materials describe Almeida as a co-inventor of RLHF / InstructGPT, previously at Google Brain. Confirm bios on typesafe.ai/team before quoting them elsewhere.
How is the company funded? Press
Business Wire (press): about $40M seed led by DCVC; the company emerged from stealth around September 15, 2026. Press-attributed, not a TypeSafe blog number.
Where do the 193.6× / 444.6× figures come from? Company claim
TypeSafe’s homepage workflow-eval numbers. The launch blog says those multiples are on the higher end of real-world gains and points to evals.typesafe.ai for methodology. Reference labels: average of GPT-6 Astra and Claude Fable 5.1 high thinking. This 101 does not independently verify them.
Can I use Jev inside coding agents? Sourced
Yes, as a decision primitive. TypeSafe publishes an agent skill (typesafe-ai/skills). Agents still generate code via LLMs. Jev is the classify / route / score / gate step, not the coder.
What should I do when confidence is low? Sourced
Do not act. Escalate to a human or a larger generative model. Official docs describe confidence patterns for automate-versus-escalate policy. Log outcomes and recalibrate.
Can I batch many questions? Sourced
Yes. Official theme: speculative fan-out. Ask many independent questions in one request — often cheaper and faster than serial chat calls. Code selects which answers to use.
Can Jev do math or compare dates? Sourced
Official jaggedness page: Jev is not a calculator and does not count reliably. Extract semantically, then compute in code. Same for “which date is earlier.”
What about prompt injection in state? Sourced
Official docs: state is treated as data, not as a hostile user by default, and can be steered. Use precise criteria, tests, and your own injection / abuse defenses around automation. Improvements are planned; do not assume a built-in firewall.
Is there enterprise zero-data-retention? Sourced
Docs mention ZDR for enterprise customers (Legal). Vercel AI Gateway has per-request ZDR options — that is a platform feature, not TypeSafe’s default. Confirm current terms with TypeSafe.
Just use structured outputs.
Different failure modes, cost shape, calibration, and parallel multi-question decisions. TypeSafe’s line: System One is not JSON mode.
Classifiers already exist.
Company niche: runtime-defined labels plus language understanding without per-task training or customer LoRA.
Too new / unproven.
It is early access. Attribute metrics as company claims. Read TypeSafe’s jaggedness page and evals caveats before you automate high stakes.
Where are the public benchmarks?
TypeSafe publishes an anti-benchmaxxing policy and refuses standard bench tables in model releases. Use private evals plus the workflow-evals site.
Will this replace my agent framework?
No. It embeds as a primitive. Code owns control flow. Official docs: AI-powered software, not agents.
Latency from outside the US West Coast?
Published millisecond bands are from a West Coast service. Measure from your region. Do not promise homepage ms worldwide.