3 min readUpdated Mar 2, 2026

Decision Engine

The Decision Engine in Vantage enables automated decision-making within workflows through conditional logic, compliance checking, and AI-powered evaluation.


Conditional Routing

Multi-Conditional Node

The Multi-Conditional node evaluates data against multiple conditions and routes rows to different downstream paths:

Example: Route customer orders based on value — orders over $1,000 go to "High Value" processing, orders under $100 go to "Small Order" processing, everything else goes to "Standard."

Logical Trigger

The Logical Trigger starts a workflow when specific conditions are met:


Compliance Checking

Compliance Check Node

The Compliance Check node evaluates data rows against predefined compliance rules:

AI Compliance Check Node

The AI Compliance Check node uses AI to evaluate compliance against natural-language policies:

Example Policy:

Check that: 1. Customer email is in a valid format 2. Consent date is not older than 12 months 3. No personally identifiable information appears in the notes field

AI-Powered Decisions

AI Conditional Node

The AI Conditional node uses AI to make routing decisions based on natural-language criteria:

Example: "Route this customer inquiry to the billing team if it's about payments, invoices, or subscription issues. Otherwise, route to general support."

AI Trigger Node

The AI Trigger starts a workflow based on AI-detected patterns or events:


Building a Decision Pipeline

A typical decision pipeline combines multiple decision nodes:

Data Source → Data Validation → AI Compliance Check → Multi-Conditional │ │ ▼ ▼ FAIL: Send Alert PASS: Dashboard Output
  1. Data Source — Pull data from a database or integration
  2. Data Validation — Check data format and completeness
  3. AI Compliance Check — Evaluate against compliance policies
  4. Multi-Conditional — Route results based on outcomes
  5. Output — Alert on failures, display passes on dashboard