Flow Templates
Available Templates
Section titled “Available Templates”Simple Chat Agent
Section titled “Simple Chat Agent”The most basic agent — responds to user messages with an LLM.
Nodes: Start -> Agent -> End
Best for: Customer support, Q&A, general assistants
Pipeline Agent
Section titled “Pipeline Agent”Multi-step data processing with HTTP fetching and transformation.
Nodes: Start -> HTTP API -> Agent (process) -> Agent (format) -> End
Best for: News scrapers, data aggregators, report generators
Conditional Router
Section titled “Conditional Router”Classifies input and routes to different handlers.
Nodes: Start -> Classify -> [Handler A, Handler B, Handler C] -> End
Best for: Multi-purpose agents, intent routing
Scheduled Worker
Section titled “Scheduled Worker”Runs on a cron schedule for background tasks.
Nodes: Start (schedule trigger) -> HTTP API -> Agent -> End
Best for: Monitoring, periodic reports, data sync
Multi-Agent Team
Section titled “Multi-Agent Team”Delegates to specialized sub-agents.
Nodes: Start -> Agent Pool -> End
Best for: Complex tasks requiring multiple specializations
Guarded Agent
Section titled “Guarded Agent”Includes input and output safety checks.
Nodes: Start -> Guardrail (input) -> Agent -> Guardrail (output) -> End
Best for: Production agents handling sensitive data
Using Templates
Section titled “Using Templates”- Click New Agent from the dashboard
- Select a template from the template gallery
- The flow builder opens with the template pre-loaded
- Customize nodes, prompts, and connections
- Save and deploy