How the number is calculated
Four factors multiply into the estimated exposure:Base risk from the action type
Every
action_type maps to a risk tier via a configurable matrix stored in your organisation settings. The defaults are:action_type | Tier | Base exposure |
|---|---|---|
email_send | low | $500 |
contract_generation | medium | $10,000 |
pricing_change | medium | $10,000 |
claim_denial | high | $50,000 |
medical_recommendation | critical | $200,000 |
| (anything else) | medium | $10,000 |
Confidence adjustment
Low-confidence decisions are riskier. A
confidence value below 0.5 multiplies the base exposure by 2.0×.Human-in-loop adjustment
A decision that was auto-executed without human review multiplies the exposure by 1.5×. Setting
human_in_loop: true when logging the decision removes this multiplier.liability_max_exposure (default $10 million) to prevent absurd numbers from a misconfigured matrix. A 90% confidence interval is constructed as [exposure × 0.5, exposure × 2.0] (log-symmetric).
Shape
rationale field gives you a human-readable breakdown of every factor that went into the number — useful for explaining an estimate to a colleague or an auditor.
Reading estimates on the dashboard
The Liability tab shows each active estimate alongside its decision record, risk category badge, and confidence interval. Estimates are sortable by exposure amount, agent, and action type. Clicking through to a decision record shows you the full rationale and any consequence links that affected the calculation.Fetching aggregate exposure
Alert thresholds
The dashboard subscribes toliability_estimate.updated events over the WebSocket stream. When an estimate’s exposure crosses liability_alert_threshold (default $100,000), a red toast fires:
Liability threshold exceeded —Configure your threshold via Settings → Liability in the dashboard.
Lowering your threshold generates more alerts but gives you earlier warning on borderline decisions. Start with the default and tune it down once you have a baseline sense of your organisation’s typical exposure distribution.