Presentation node

The Presentation node generates a slide deck from data and instructions using a language model.
Handles
| Handle | Purpose |
|---|---|
Data | The data to present (main line) |
prompt | Instruction override (how to build the deck) |
Configuration
- Model — a language model (must support structured output).
- Instructions — how to build the deck.
- Max slides — maximum slide count.
Output
The node returns a deck shape:
{
"title": "Quarterly report",
"slides": [{ "heading": "Revenue", "bullets": ["+12% YoY", "…"] }]
} The Output node renders it as slides and offers a PPTX download.
Example
Deep Research → Presentation (instructions: “turn the report into a 6-slide executive deck”) → Output.
Notes
- Requires a model with structured-output support.
Related
- HTML Page — a page instead of slides.
- Table Generation — tabular data.