schema in, json out,
a probability on every field.

Send a JSON Schema and a document. Get back a record that matches the schema, with a calibrated confidence you can threshold on every value.

you send

schema
{
  "properties": {
    "intent":   { "enum": ["refund","cancel"] },
    "order_id": { "type": "string" },
    "urgent":   { "enum": ["yes","no"] },
    "amount":   { "type": "number",
                  "nullable": true }
  }
}

document
"I still haven't had the $48 back on
 order 41822. Third time I've written."

you get

  • intent"refund" 0.96
  • order_id"41822" 0.99
  • urgent"yes" 0.88
  • amount48 0.61

Every value carries its own probability, and the evidence span it came from. Route the confident ones, queue the rest.

why not just an llm

what people point it at

early access

One email when the API opens. Nothing else.