Sobmit Docs

Presentation node

Presentation node card

The Presentation node generates a slide deck from data and instructions using a language model.

Handles

HandlePurpose
DataThe data to present (main line)
promptInstruction 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