This shows you the differences between two versions of the page.
| n8n [2026/03/25 02:27] – Create page with researched content agent | n8n [2026/03/25 02:34] (current) – Replace ASCII diagram with mermaid agent | ||
|---|---|---|---|
| Line 24: | Line 24: | ||
| n8n uses a node-based architecture where workflows are directed graphs of connected nodes: | n8n uses a node-based architecture where workflows are directed graphs of connected nodes: | ||
| - | <code> | + | <mermaid> |
| - | | + | graph LR |
| - | | + | A[Trigger: Webhook] --> B[AI Agent: LLM Call] |
| - | │ (Webhook)│ | + | B --> C[Action Node: Google Docs] |
| - | | + | |
| - | │ | + | |
| - | | + | </ |
| - | │ Tool Node │───▶│ | + | |
| - | │ (Search) | + | |
| - | | + | |
| - | | + | Infrastructure: |
| - | | + | |
| - | | + | < |
| - | | + | graph TD |
| - | | + | A[n8n Runtime] --> B[Postgres: State] |
| - | │ │ (State) | + | A --> C[Redis: Cache] |
| - | │ └──────────┘ └───────┘ └────────────┘ | + | A --> D[Queue Mode: Workers] |
| - | └──────────────────────────────────────────┘ | + | </mermaid> |
| - | </code> | + | |
| Each node processes JSON data streams with support for parallel execution, branching logic, and error boundaries. The platform runs on Postgres for state persistence and Redis for caching and queue management. | Each node processes JSON data streams with support for parallel execution, branching logic, and error boundaries. The platform runs on Postgres for state persistence and Redis for caching and queue management. | ||
| Line 100: | Line 96: | ||
| * [[langflow]] — Visual AI app builder | * [[langflow]] — Visual AI app builder | ||
| * [[copilotkit]] — Frontend AI copilot stack | * [[copilotkit]] — Frontend AI copilot stack | ||
| - | |||