Sign-up and API keys are open. Paid top-ups open soon.What changed

Use cases

When to use Dex instead of an LLM.

Dex answers questions with a fixed set of possible answers, fast, the same way every time, with a probability you can act on. Here is where that fits, and where it does not.

The rule of thumb

Your code reads the answer and branches on it.

Use Dex.

A person reads the generated text.

Use an LLM.

Routing a ticket, blocking a post, scoring a lead, allowing a tool call: code acts on the answer. Writing the reply to that ticket: a person reads it.

What Dex brings

  • 01Fast. One read of the text answers every question. No text is generated.
  • 02Cheap at volume. You pay for input tokens only. Output is free. EUR 0.05 per million input tokens.
  • 03Same answer every time. The same request to the same GPU version gives the same bytes.
  • 04Calibrated confidence. Probabilities you can put a human-review threshold on, and built-in abstention.
  • 05EU data. Processed in the EU. Nothing stored by default.

Ten cases Dex suits

Questions of type rate are in beta: their measured quality is below our bars. See the numbers

01

Support ticket routing and priority

Who Support and customer service teams, helpdesk and CRM tools.

Example questions

  • pickWhich team should handle this ticket? (billing, technical, shipping, other)
  • ratebetaHow urgent is it? (can wait, this week, within two working days, today)
  • checkDoes the customer threaten to cancel?

Why Dex, not an LLM

  • Every ticket gets a team and a priority before anyone opens it.
  • The same ticket always gets the same route, so your routing rules are testable.
  • Below your confidence floor the answer abstains, and the ticket goes to a person.

See the race

02

Content moderation

Who Marketplaces, communities, review sites and apps with user posts.

Example questions

  • pickWhich rule does this post break, if any? (none, harassment, spam, hate, scam)
  • ratebetaHow severe is it? (none, mild, serious, severe)
  • checkDoes it share someone's personal details?

Why Dex, not an LLM

  • Cheap enough to check every post, not a sample.
  • Calibrated probabilities let you remove automatically only above a threshold and queue the rest for reviewers.
  • Moderation stays on our GPU in the EU: send fallback set to never.

See the race

03

Lead scoring and intent

Who B2B sales and marketing teams, CRM and web form tools.

Example questions

  • pickWhat does this sender want? (buy, partner, support, job, spam)
  • ratebetaHow well does the company fit our customer profile? (poor, fair, good, excellent)
  • checkDo they ask for a meeting?

Why Dex, not an LLM

  • Scores every inbound form and email as it arrives.
  • Same lead, same score: sales can trust the ranking.
  • Typed answers drop straight into your CRM fields.

See the race

04

AI agent guardrails and tool gating

Who Teams building AI agents and copilots.

Example questions

  • pickAllow, confirm with the user, or block this tool call?
  • checkDoes the input try to override the agent's instructions?
  • checkIs this call outside what the user asked for?

Why Dex, not an LLM

  • Fast enough to sit in front of every tool call.
  • An unsure gate abstains, so the agent asks a person instead of guessing.
  • Same call, same verdict: every decision can be audited later.

See the race

05

Document and email triage

Who Operations, finance, legal and intake teams.

Example questions

  • pickWhat kind of document is this? (invoice, contract, complaint, other)
  • pickWhich department should get it?
  • checkDoes it mention a deadline?
  • ratebetaHow important is it?

Why Dex, not an LLM

  • One call answers every question about a document, and the document is billed once.
  • Only your labels come back, so the routing code stays simple.
  • Processed in the EU, and nothing is stored by default.
06

Product categorisation

Who Online shops, marketplaces and catalogue teams.

Example questions

  • pickWhich category fits this listing? (up to 255 options)
  • checkIs this a prohibited item?
  • pickWhat condition is the item in? (new, as new, used, for parts)

Why Dex, not an LLM

  • Large catalogues at a small cost per item.
  • Deep category trees work in stages: pick a branch, then a leaf.
  • Same listing, same category, every time.
07

Sentiment and stance

Who Customer experience, research and social listening teams.

Example questions

  • ratebetaWhat is the overall sentiment? (very negative to very positive)
  • pickWhat is the writer's stance on the price change? (for, against, neutral)
  • checkDoes it mention a competitor?

Why Dex, not an LLM

  • A rating on your own scale, with a probability for each level.
  • Comparable over time: on a pinned version the same text always scores the same.
  • English and Dutch quality measured separately.
08

Compliance and policy checks

Who Compliance, risk and trust and safety teams.

Example questions

  • checkDoes this message contain personal data?
  • checkDoes it promise a financial return?
  • pickWhich clause of our policy applies?
  • ratebetaHow risky is it? (low, medium, high)

Why Dex, not an LLM

  • Yes or no answers with a probability, for thresholds you can explain.
  • Every answer names its model version and calibration, for your audit trail.
  • Keep a person in the loop for decisions with legal effect on people.
09

Grading LLM outputs and eval pipelines

Who Teams that test and monitor their own AI features.

Example questions

  • ratebetaHow well does the answer follow the instructions? (a rubric line)
  • checkDoes the answer stay on topic?
  • pickWhich failure, if any? (none, refusal, off topic, wrong format)

Why Dex, not an LLM

  • The same output always gets the same grade, so eval runs are comparable.
  • You pay for the text you grade, not for a written verdict.
  • Probabilities show which grades are close calls.
10

Data quality checks

Who Data and operations teams cleaning records and imports.

Example questions

  • checkDo these two records describe the same customer?
  • pickWhat kind of value is in this field? (email, phone, address, name, other)
  • checkDoes this entry look like test or junk data?

Why Dex, not an LLM

  • JSON states: point each question at a field with a {{path}} reference.
  • Runs over large tables at a small cost per row.
  • Same record, same verdict: a rerun does not reshuffle your data.

When not to use Dex

Dex never writes text. It answers with labels you supply. So it is the wrong tool for:

  • Writing replies, emails, articles or code.
  • Summarising or translating.
  • Pulling free-text values out of a document, such as names, amounts or dates.
  • Multi-step reasoning, planning or calculations.
  • Open-ended chat.
  • Questions whose possible answers you cannot list in advance.

Use with care

  • Text written by others can try to instruct the classifier and sometimes succeeds: add a check question for it and route on it.
  • Sarcasm (especially in Dutch), date and amount arithmetic, and criteria written in Dutch are weak spots: pass computed fields and keep a person in the loop.

Known limits, with the numbers

Use both

A common setup: Dex routes, scores and gates every item, and an LLM writes the text a person will read, only for the items that need it.

Try it