Try a live decision table
These four scenarios run on a real SmartDecision instance. Change any input and the decision is resolved over the actual API, in real time. The highlighted row shows which rule matched.
Policy “Approve the loan if credit score is 700 or higher, age is at least 21, income is at least €10,000, and existing debt is at most €2,000.”
This applicant's credit score of 650 is below the 700 bar. Raise it to 700 and watch the decision resolve.
Raw API response ·
Resolving against the live instance…
The live demo instance isn't reachable right now. Please try again in a minute.
| # | credit_score | age | income | debt | approved |
|---|---|---|---|---|---|
| 1 | >= 700 | >= 21 | >= 10000 | <= 2000 | true |
| 2 | * | * | * | * | false |
Policy “Offer free shipping if the cart value is at least €100, the destination is the EU, and the customer has a loyalty tier.”
An €80 cart to the EU with no loyalty tier doesn't qualify. Push the cart past €100 and pick a tier.
Raw API response ·
Resolving against the live instance…
The live demo instance isn't reachable right now. Please try again in a minute.
| # | cart_value | destination | loyalty | approved |
|---|---|---|---|---|
| 1 | >= 100 | EU | in [Silver, Gold, Platinum] | true |
| 2 | * | * | * | false |
Policy “Grant beta feature access if the user's plan is Pro or Enterprise, the region is US, EU, or Asia, and the account is at least 3 months old.”
This Pro account is only 2 months old, too new for the beta. Make it 3 and access opens up.
Raw API response ·
Resolving against the live instance…
The live demo instance isn't reachable right now. Please try again in a minute.
| # | plan | region | account_age | approved |
|---|---|---|---|---|
| 1 | in [Pro, Enterprise] | in [US, EU, Asia] | >= 3 | true |
| 2 | * | * | * | false |
Policy “A person is eligible for health insurance if they are between 18 and 65, have no disqualifying pre-existing conditions, and choose a Premium or Family plan. Deny eligibility otherwise.”
A Basic plan isn't covered, so this applicant is denied by rule 3. Switch the plan to Premium or Family.
Raw API response ·
Resolving against the live instance…
The live demo instance isn't reachable right now. Please try again in a minute.
| # | age | preexisting | plan_type | approved |
|---|---|---|---|---|
| 1 | < 18 | * | * | false |
| 2 | > 65 | * | * | false |
| 3 | * | * | Basic | false |
| 4 | * | Yes | * | false |
| 5 | * | * | * | true |
These tables were generated from the policy text above by a local LLM. Yours can be too.
Join the waitlist