Table Generation node

The Table Generation node builds a structured table from data and instructions using a language model with structured output.
Handles
| Handle | Purpose |
|---|---|
Data | The data to tabulate (main line) |
prompt | Instruction override (how to build the table) |
Configuration
- Model — a language model (must support structured output).
- Instructions — how to build the table.
- Max sheets — maximum number of sheets.
Output
The node returns a table shape:
{
"sheets": [
{ "name": "Sheet1", "columns": ["Name", "Value"], "rows": [["A", 1]] }
]
} The Output node renders it as a table and offers an XLSX download.
Example
Web Search → Table Generation (instructions: “extract product, price, rating into a table”) → Output.
Notes
- Requires a model with structured-output (tool) support; the node warns otherwise.