Skip to content

Flow Templates

The most basic agent — responds to user messages with an LLM.

Nodes: Start -> Agent -> End

Best for: Customer support, Q&A, general assistants

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

Classifies input and routes to different handlers.

Nodes: Start -> Classify -> [Handler A, Handler B, Handler C] -> End

Best for: Multi-purpose agents, intent routing

Runs on a cron schedule for background tasks.

Nodes: Start (schedule trigger) -> HTTP API -> Agent -> End

Best for: Monitoring, periodic reports, data sync

Delegates to specialized sub-agents.

Nodes: Start -> Agent Pool -> End

Best for: Complex tasks requiring multiple specializations

Includes input and output safety checks.

Nodes: Start -> Guardrail (input) -> Agent -> Guardrail (output) -> End

Best for: Production agents handling sensitive data

  1. Click New Agent from the dashboard
  2. Select a template from the template gallery
  3. The flow builder opens with the template pre-loaded
  4. Customize nodes, prompts, and connections
  5. Save and deploy