Sobmit Docs

Table Generation node

Table Generation node card

The Table Generation node builds a structured table from data and instructions using a language model with structured output.

Handles

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

Related

  • Output — rendering the table.
  • HTML Page — a richer document instead of a table.
  • Use cases — extracting action items with owners from a transcript.