Early accessvEA 2026-09-15

Sourced from public early-access reportsVerified

Support Ticket Routing with a Judgment-Only Model

Updated 2026-09-22

On this page

The scenario

A support queue receives hundreds to thousands of tickets a day. Each one needs to land in front of the right team — billing, technical, account management, sales — and the genuinely urgent ones need to jump the line. Misrouted tickets bounce between queues, doubling response time; a human reading every ticket just to route it is the most expensive sorting algorithm you can buy.

Why Jev fits

Routing is a closed-world decision repeated at volume: pick one of N queues, for every ticket, all day. That is exactly the Choice primitive — up to 255 options with per-option probabilities and a confidence value you can gate on. At a reported $0.042 per million input tokens with output free (early-access pricing — verify at jev.com), judging every ticket on arrival costs less than judging one ticket in a hundred with a frontier LLM.

Judgment design example

Structured input per ticket:

FieldExample
subject"Charged twice for September"
body_excerptfirst ~500 characters
customer_planenterprise
account_age_days412
previous_tickets_30d2
channelemail

Judgments to define:

  1. Noul (binary): "Is this an auto-generated notification or spam rather than a real customer request?" → yes → auto-archive, never touches a queue.
  2. Choice: "Which team owns this?" → billing / technical / account / sales. Confidence below your threshold → route to a general triage queue instead of guessing.
  3. Score: "Urgency, 1–5" → enterprise customer + service-down language sorts above a feature question, regardless of arrival order.

Where the LLM sits

Downstream of the verdict, twice. First, an LLM can draft a response only for tickets Jev routes as real and urgent — the expensive generation happens where a reply will actually be sent. Second, borderline tickets (low Choice confidence) can be escalated to a larger model for a slower second opinion, the classic cascade routing pattern. Jev's job ends at the routing slip; it never writes to the customer.

Watch-outs

  • Confidence gating is the safety valve. A forced choice between four wrong queues is worse than an honest "unsure" — send low-confidence tickets to human triage rather than accepting the top probability blindly.
  • Language coverage. Multilingual queues should be judged per-language; early independent testing suggests accuracy varies by task, so measure on your own ticket distribution before trusting the router unattended.
  • VIP and legal overrides. Hard-coded rules (key accounts, legal threats, chargeback language) should bypass or annotate the model verdict — some routing decisions are policy, not judgment.

Sources

  • learnjev.com — Three Primitives tutorial (Choice semantics: probabilities + confidence, ≤255 options) and the cost/benchmarks tutorial used for the pricing context.
  • jev101.com — application-scenario coverage of ticket/mail routing patterns (邮件分流) that informed the lane structure.
  • "Jev: The New AI Model That's Breaking The Internet (Full Tutorial)" — Moritz (~43K views) — judgment-as-routing-layer demos.
  • "Jev + GPT-6 Astra = 400X Cheaper" — Jack Roberts (~21K views) — the filter-then-generate cost framing. Treat multiplier claims as directional, not benchmarks.

Unofficial fan-made handbook. Not affiliated with TypeSafe AI or jev.com.