Skip to main content

Build an Agentic Flow

What are Agentic Flows?​

Agentic Flows use AI agents to autonomously optimize data pipelines — detecting anomalies, suggesting improvements, and auto-tuning performance.

Step 1: Enable Agentic Mode​

pipeline: smart-analytics
agentic:
enabled: true
agents:
- type: optimizer
target: performance
- type: quality_monitor
target: data_quality
`

## Step 2: Configure Agent Behavior

```yaml
agentic:
optimizer:
auto_tune: true
max_changes_per_run: 3
require_approval: true
quality_monitor:
alert_threshold: 0.05
auto_quarantine: true
`

## See Also

- [Designer Overview](/docs/designer/overview)
- [Overview](/docs/overview)