Overview
The Add content node is a specialized content storage node that saves input data to the project's Content asset store for future use. This node serves as a bridge between data processing workflows and content persistence by converting any importable data type into stored content that can be accessed by other nodes and workflows.
The node accepts any importable data type (text, JSON, files, etc.) and creates a new Content item in the persistent store with optional tags and notes for organization. This enables workflows to save intermediate processing results, user inputs, or generated data for later retrieval through Select content nodes or content processing pipelines. It's essential for building workflows that need to preserve data across executions or share results between different workflow runs.
Node Specification
Core Properties
| Property |
Value |
| Node Type |
Content storage |
| Category |
Content |
Parameters
| Parameter |
Type |
Default |
Required |
Description |
| Tags |
Text |
(empty) |
No |
Comma-separated tags for organizing and categorizing the content |
| Notes |
Text |
(empty) |
No |
Additional context or description for the stored content |
Input Ports
| Port |
Type |
Accepts |
Required |
Description |
| Input |
Importable |
All importable types |
Yes |
Data to be stored as content in the asset store |
Output Ports
| Port |
Type |
Description |
| Content |
Content |
Stored data as Content object that can be used by other nodes |
Process Flow Exits
| Exit |
Condition |
Description |
| Main exit |
On completion |
Continues process flow after content storage |
Common Flows
LLM Response Storage
Call LLM → Add content (tags: "responses") → Content Store
Save LLM responses for later analysis or reuse
Processing Result Preservation
Data Processing → Add content → Select content → Further Processing