TableCompilationTask

Generate structured tables with AI-computed cell values using parallelized partition processing and multi-format output support.

Category: Reasoning Parallel Processing Output: HTML/CSV/JSON
⚙️ ExecutionConfig.json
{
  "rows": ["Apple", "Tesla", "Microsoft"],
  "columns": ["Industry", "Primary Product"],
  "cell_query": "What is the {column} for {row}?",
  "task_description": "Tech giants comparison"
}
👁️ Session UI (Table Tab)
Industry Primary Product
Apple Consumer Electronics iPhone
Tesla Automotive / Energy Electric Vehicles
Microsoft Software / Cloud Windows & Azure

Test Workspace Artifacts

Execution Configuration

Field Type Description
rows * List<String> Row headers for the table.
columns * List<String> Column headers for the table.
cell_query * String Template for cell generation. Use {row} and {column} placeholders.
task_description String Overall context or description for the table generation.