Skip to main content
Visual workflow builder allows you to create, connect, and manage agentic processes using a drag-and-drop interface.
The [flow] extra is opt-in and heavy (~500MB) because Langflow pulls many dependencies. Install only when you need the visual builder: pip install "praisonai[flow]".

Quick Start

1

Install Flow Addon

Install the visual builder components.
2

Launch Visual Builder

Start the local server and open the web interface.
3

Connect Components

Open http://localhost:7860 to access the interface. Drag and drop Agent and Agent Team nodes to orchestrate workflows.

CLI Subcommands

See Flow CLI for the full flag reference.

Which subcommand should I use?


Start Command Flags

Import flags

Export flags

List flags


How It Works

If PRAISONAI_OBSERVE=langfuse is set, the Agent component auto-wires a LangfuseSink with praisonai_source=langflow trace metadata.

Agent Configuration Options

Options available on the Agent node visual component.

Agent Team Configuration Options

Options available on the Agent Team node visual component for multi-agent workflows.

Common Patterns

YAML round-trip

Sequential Connections

Connect individual Agent nodes linearly (Agent 1 → Agent 2) by linking the Agent output handle on the first node to the Previous Agent input handle on the second node.

Multi-Agent Orchestration

Connect multiple Agent nodes directly to the Agents input handle of an Agent Team node. The team node evaluates the topology and runs the sub-agents properly.

Headless / LAN deploy


Best Practices

When using the agent node’s knowledge capabilities, upload compatible document types (PDF, TXT, CSV) or provide valid URLs in the Knowledge inputs.
Use the Previous Agent connection to establish hard execution boundaries. The orchestrator automatically parses node inputs backwards to map deterministic execution flow.
Click the “Advanced” toggle on nodes inside Langflow to expose robust SDK parameters like custom Base URLs, Code Execution Mode, Verbose logging, and specific Memory Providers.
Export flows back to YAML after visual edits so workflows stay in version control.

Flow CLI

CLI reference for all subcommands and flags

Langflow Integration

Component reference and model formats

Agent Workflow

Core workflow concepts

Installation Extras

[flow] extra reference