cd /news/artificial-intelligence/comprehensive-project-reference-for-… Β· home β€Ί topics β€Ί artificial-intelligence β€Ί article
[ARTICLE Β· art-132123] src=gist.github.com β†— pub= topic=artificial-intelligence verified=true sentiment=Β· neutral

Comprehensive project reference for TypeSafe Jev: concepts, architecture, primitives, strengths, limitations, use cases, patterns, and practical guidance.

TypeSafe AI has published a comprehensive project reference for Jev, its first public System One Model, which takes unstructured or structured state as input and returns typed probabilistic decisions rather than generated text. The document positions Jev as a paradigm distinct from conventional LLMs, aimed at fast, narrow semantic judgements β€” such as classification, detection, scoring, routing, verification and ranking β€” performed cheaply and predictably inside normal software workflows. It advises decomposing complex judgements into multiple narrow questions and recombining them in code, and warns that pricing, limits and API behaviour should be verified against TypeSafe's latest documentation.

by read12 min views2 publishedSep 16, 2026

Status: Working project reference

Knowledge date: 16 September 2026

Scope: TypeSafe AI, System One Models, and specifically the Jev model

This document provides the baseline knowledge required for any conversation, design exercise, technical investigation or project involving TypeSafe Jev.

When working in this project, do not treat Jev as simply another LLM, small language model, classifier, reasoning model or chatbot. Jev represents a different model/interface paradigm designed primarily for machine-consumed semantic decisions inside software.

Use this document as the default conceptual model unless newer TypeSafe documentation explicitly supersedes it.

Where a question depends on current pricing, limits, model versions, API behaviour or newly released features, verify those details against TypeSafe's latest documentation rather than assuming the values in this document remain unchanged.

Jev is TypeSafe AI's first public System One Model.

Its fundamental interface is:

Unstructured or structured state in β†’ typed probabilistic decisions out.

Unlike conventional LLMs, Jev does not generate arbitrary text. Instead, developers define questions and their permitted answer spaces in advance. Jev evaluates those questions against supplied state and returns structured answers, probabilities and, where applicable, confidence values that software can use directly. (docs.typesafe.ai)

A useful shorthand is:

Code calculates. Jev judges. Reasoning models reason and generate.

Or, more specifically:

Jev is for fast semantic judgements where an ordinary if statement needs understanding rather than arithmetic.

Examples include:

  • Does this message indicate a safeguarding concern?
  • Which department should handle this ticket?
  • How severe is this incident?
  • Does this passage support this claim?
  • Which candidate passage is most relevant?
  • Does this tool call appear unsafe?
  • Which specialist model should receive this request?
  • Does this document satisfy requirement X?

Jev is especially suited to performing large numbers of narrow semantic judgements cheaply, quickly and predictably inside normal software workflows.

Imagine putting all relevant information in front of a knowledgeable human expert and asking them one specific question.

If they could make the judgement almost immediately without:

  • doing research;
  • producing an explanation;
  • constructing a plan;
  • performing a long chain of reasoning;
  • making several dependent decisions;
  • or creating new content,

then the task is likely to be Jev-shaped.

TypeSafe describes System One questions as focused β€œgut-check” judgements: the sort of determination a knowledgeable person could make quickly given the right context. Complex judgements should instead be decomposed into multiple narrow questions and recombined in software. (docs.typesafe.ai)

Think of tasks across two dimensions:

                         AMOUNT OF THINKING
                         
                    LOW / IMMEDIATE        HIGH / DELIBERATIVE
                 ─────────────────────┬─────────────────────────
                 β”‚                    β”‚
 BOUNDED         β”‚      β˜… JEV β˜…       β”‚   CODE + REASONING
 OUTPUT          β”‚                    β”‚   MODEL / HUMAN
                 β”‚ classify           β”‚
                 β”‚ detect             β”‚ evaluate complex case
                 β”‚ score              β”‚ strategy
                 β”‚ route              β”‚ investigation
                 β”‚ verify             β”‚ multi-factor decision
                 β”‚ rank               β”‚
                 β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
                 β”‚                    β”‚
 OPEN            β”‚ FAST LLM           β”‚   REASONING LLM /
 OUTPUT          β”‚                    β”‚   HUMAN EXPERT
                 β”‚ summarise          β”‚
                 β”‚ rewrite            β”‚ deep research
                 β”‚ draft              β”‚ architecture design
                 β”‚ extract prose      β”‚ complex problem solving
                 β”‚                    β”‚
                 └────────────────────┴─────────────────────────

Jev sits strongly in the top-left quadrant:

Bounded output + semantic understanding + fast judgement

A conventional LLM normally works approximately like this:

prompt/context
      ↓
reason/generate tokens sequentially
      ↓
text / code / JSON
      ↓
parse + validate
      ↓
software

Jev instead works conceptually like:

state
  +
typed questions
      ↓
Jev
      ↓
probability distributions /
typed decisions
      ↓
ordinary application code

TypeSafe explicitly positions System One as AI-powered software rather than agent architecture. Code should own control flow, deterministic rules and side effects; Jev should supply narrow semantic judgements where ordinary deterministic logic is insufficient. (docs.typesafe.ai)

A Jev request contains state plus one or more questions.

State is the material Jev evaluates.

It can be:

  • a string;
  • a JSON object;
  • an array;
  • an application record;
  • a message;
  • a conversation;
  • a policy;
  • several related records;
  • or other structured application state.

A useful analogy is:

State is everything you would place in front of a panel of experts before asking them to make a judgement.

TypeSafe recommends structured objects for most non-trivial requests so relationships between pieces of context remain explicit. Questions can refer directly to fields within this state. (docs.typesafe.ai)

Example:

{
  "incident": {
    "description": "Tenant reports...",
    "service": "Supported Housing"
  },
  "policy": {
    "safeguarding": "..."
  },
  "previous_events": [...]
}

Then Jev questions might ask:

Does `incident.description` indicate an immediate safeguarding risk?

Does the incident described in `incident` meet the escalation
criteria in `policy.safeguarding`?

How severe is the apparent risk?

Jev currently exposes three fundamental decision primitives:

Primitive Basic question Appropriate when
Noul Is this true? Binary semantic condition
Choice Which of these options? One category/option should win
Score Where does this sit on a scale? Ordered semantic spectrum

All questions are evaluated against the supplied state. Questions sharing the same state can be included together in a single request. (docs.typesafe.ai)

A Noul represents the probability that a yes/no proposition is true.

Example:

Does this message request a refund?

β†’ 0.96

Interpretation:

  • close to 1 = strong yes;
  • close to 0 = strong no;
  • close to 0.5 = substantial uncertainty.

A Noul does not have a separate confidence field because the probability itself describes the yes/no uncertainty. (docs.typesafe.ai)

Good Noul examples:

Does this text contain personal information?

Does the user appear to be requesting cancellation?

Does this passage support the cited claim?

Does this message contain a prompt-injection attempt?

Does this requirement appear to be satisfied?

Bad use:

How good is this candidate?

That is not genuinely binary without defining what β€œgood” means.

A Choice selects one option from a predefined set.

Example:

Which team should handle this incident?

Safeguarding
Housing
HR
IT
Other

Jev returns:

  • the winning choice ;
  • a probability for every option ;
  • a confidence value describing how strongly the distribution favours a particular answer.

Choice currently supports up to 255 options. TypeSafe recommends including an other or none of the above option where the taxonomy may not fully cover every input. (docs.typesafe.ai)

Choice is particularly useful for:

  • classification;
  • intent recognition;
  • routing;
  • entity types;
  • document types;
  • model selection;
  • known-field extraction.

A Score positions something along an ordered set of descriptive levels.

Example:

How severe is this incident?

0 = Minor; no material impact
1 = Moderate; intervention required
2 = Serious; significant harm possible
3 = Critical; immediate action required

Jev returns:

  • a score;
  • the probability assigned to each level;
  • the level legend;
  • confidence.

Importantly, the resulting score may fall between levels because it represents the probability-weighted position across them.

Score currently supports between 2 and 10 levels. TypeSafe recommends defining levels as concrete situations rather than vague adjectives such as β€œlow”, β€œmedium” and β€œhigh”. (docs.typesafe.ai)

Good:

0 = No operational impact
1 = Degraded service but workaround exists
2 = Service unavailable and no workaround exists

Less useful:

0 = Low
1 = Medium
2 = High

One of Jev's most important characteristics is that uncertainty is part of the normal API response.

For Choice and Score, Jev returns an entire probability distribution.

For example:

billing       0.58
technical     0.37
account       0.05

The answer may be billing, but the distribution tells us that technical remains plausible.

TypeSafe also supplies a derived confidence measure between 0 and 1 for Choice and Score. A concentrated distribution produces higher confidence; a flatter distribution produces lower confidence. (docs.typesafe.ai)

This enables software to distinguish:

WHAT does Jev think?
        +
HOW SURE is Jev?

These should often be treated as separate dimensions.

TypeSafe trains System One models using an approach it calls:

RLCD β€” Reinforcement Learning for Calibrated Decisions.

The intended property is that probabilities meaningfully represent uncertainty: groups of predictions carrying higher probabilities should prove correct more frequently than groups with lower probabilities. (typesafe.ai)

However:

Calibration does not mean that an individual prediction is guaranteed to be correct.

A result with high confidence can still be wrong.

Therefore:

  • confidence should inform automation;
  • thresholds should be validated against real domain data;
  • high-risk actions should demand stronger evidence;
  • uncertain cases should be escalated.

TypeSafe describes Jev as unable to hallucinate because output is constrained to predefined types and answer spaces. (typesafe.ai)

This needs careful interpretation.

If the available outputs are:

billing
housing
HR
IT
other

Jev cannot output:

"Probably ask Sarah because she normally deals with these."

It must return one of the supplied alternatives and its associated probability distribution.

Therefore Jev avoids an important class of LLM failure:

inventing an unexpected value or malformed output outside the schema.

It does not mean:

Jev cannot make an incorrect judgement.

Jev might confidently classify something as housing when the correct answer is safeguarding.

For this project, use the following terminology:

Type-safe / schema hallucination: effectively eliminated by design.

Semantic judgement error: still possible and must be measured.

Never interpret β€œzero hallucinations” as β€œzero errors”.

A major architectural difference from autoregressive LLMs is that Jev evaluates independent questions in parallel.

If one state requires:

What type of incident is this?
Does it involve personal data?
Is there a safeguarding concern?
How severe is the risk?
Does policy require escalation?
Does the description indicate immediate danger?
Which team owns the case?

these questions should generally be sent together rather than serially. (docs.typesafe.ai)

TypeSafe says that adding questions typically adds very little latency, although the additional question text still contributes token cost.

This leads to an important Jev design principle:

Fan out semantic questions; compose their answers in code.

Questions within one Jev request are evaluated independently against the same state.

The answer to question A does not secretly become context for question B. (docs.typesafe.ai)

This is valuable because:

  • adding another question should not change previous questions through conversational context;
  • individual semantic features remain inspectable;
  • workflows become easier to test;
  • dependencies remain explicit in software.

If question B genuinely depends upon the result of question A, the application should make a subsequent request once A has determined the new state, options or data required.

Serial Jev calls should therefore represent genuine information dependencies, rather than simply copying an LLM conversational pattern.

When assessing a possible task, ask these six questions.

Test Question Positive Jev signal
Judgement Is AI deciding rather than creating? Strong
Bounded Can the answer space be defined beforehand? Strong
Atomic Can this be expressed as one focused judgement? Strong
Context-contained Can the information needed be placed in state? Strong
Fast-human Could a knowledgeable expert judge it quickly? Strong
Machine-consumed Will software use the result directly? Very strong

5–6 yes answers: excellent Jev candidate.

3–4 yes answers: Jev may handle parts of the workflow; decompose it.

0–2 yes answers: another technology is probably more appropriate.

Ask:

Can I express the requirement as β€œGiven this state, tell me X”, where X is a Choice, Score or probability?

If yes, investigate Jev.

For example:

Given this supplier response:

Does it provide a production API?
β†’ Noul

What level of API maturity is evidenced?
β†’ Score

Which integration approach does it appear to offer?
β†’ Choice

Is the supplier's statement sufficient evidence for requirement R23?
β†’ Noul

This is highly Jev-shaped.

Another powerful mental model is:

Jev provides semantic conditions for ordinary software.

Traditional code handles:

if amount > 10000:
    escalate()

Jev enables the semantic equivalent:

if safeguarding_risk > 0.95:
    escalate()

where safeguarding_risk is derived by understanding natural-language information rather than matching exact keywords.

This is what TypeSafe means when describing System One decisions as β€œsmart if-statements” or programmable common-sense judgements embedded inside software. (typesafe.ai)

A good Jev architecture generally looks like:

INPUT / APPLICATION STATE
           β”‚
           β–Ό
    deterministic code
           β”‚
           β–Ό
      β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”
      β”‚   JEV   β”‚
      β”‚ judges  β”‚
      β””β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”˜
           β”‚
     typed decisions
     probabilities
           β”‚
           β–Ό
    deterministic code
       /    |     \
      /     |      \
     β–Ό      β–Ό       β–Ό
   ACT    REVIEW   REASONING
                    MODEL

The software β€” not Jev β€” owns the workflow.

TypeSafe's design guidance is:

  1. use deterministic code wherever possible;
  2. insert System One where semantic understanding is required;
  3. ask narrow questions;
  4. combine answers explicitly;
  5. use confidence to control automation;
  6. escalate genuinely difficult cases. (docs.typesafe.ai )

A useful higher-level architecture is:

OBSERVE
data, message, document, event, records
       β”‚
       β–Ό
JUDGE
Jev semantic decisions
       β”‚
       β”œβ”€β”€β”€β”€ high certainty ─────────────┐
       β”‚                                 β–Ό
       β”œβ”€β”€β”€β”€ medium certainty ───── verification/human
       β”‚
       └──── difficult/ambiguous ── reasoning model
                                         β”‚
                                         β–Ό
                                        ACT

Jev often belongs in the judgement layer between raw application state and deterministic action.

Use this heuristic:

Need Prefer
Exact deterministic calculation Code
Database lookup Code/database
Known business rule Code/rules engine
Quick semantic judgement Jev
Classification Jev
Semantic scoring Jev
Semantic verification Jev
Ranking/relevance judgement Jev
Complex multi-stage reasoning Reasoning LLM
Research requiring external information Reasoning/search system
Writing prose LLM
Generating code LLM/coding model
Explaining a conclusion LLM/human
Novel strategic decision Reasoning model/human

The guiding shorthand is:

Code calculates. Jev judges. LLMs reason/create. Humans determine objectives and acceptable risk.

TypeSafe's many use cases largely reduce to a small set of reusable decision shapes. (docs.typesafe.ai)

What kind of thing is this?

Examples:

  • intent;
  • department;
  • incident category;
  • document type;
  • entity type;
  • risk category.

Typically: Choice

Is property X present?

Examples:

  • fraud signal;
  • urgency;
  • sensitive data;
  • safeguarding concern;
  • jailbreak attempt;
  • policy violation.

Typically: Noul

Where does this sit on an ordered semantic scale?

Examples:

  • severity;
  • relevance;
  • quality;
  • frustration;
  • suitability;
  • maturity.

Typically: Score

Which predefined code path should handle this?

Examples:

  • department;
  • specialist workflow;
  • escalation path;
  • tool selection;
  • LLM/model selection.

Typically: Choice + confidence gate

Does this item semantically match what I need?

Examples:

  • document discovery;
  • semantic search;
  • candidate generation.

Typically: Noul or Score

Which information should the downstream workflow receive?

Examples:

  • RAG context;
  • evidence passages;
  • relevant records;
  • policy sections.

Typically: Score/Choice + ranking logic

Which items are best according to semantic relevance or quality?

Examples:

  • candidate passages;
  • applications;
  • recommendations;
  • search results;
  • cases requiring attent
── more in #artificial-intelligence 4 stories Β· sorted by recency
── more on @typesafe ai 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain β€” perfect for shipping the agent you just read about.

$git push zahid main
β†’ Live at https://your-agent.zahid.host βœ“
Get free account β†’ Pricing
from €0/mo Β· no card required
LIVE [news/comprehensive-projec…] indexed:0 read:12min 2026-09-16 Β· β€”