Skip to main content

4. display_table — Display Table

Mode: Both · Category: Data Visualization

Displays a table visualization in the frontend. You can pre-fill any subset of the fields below; the LLM fills the rest at runtime.

- id: display_table
  column_ids:
    - INVOICE.INVOICE_NUMBER
    - INVOICE.INVOICE_VENDOR_NAME
    - KPI_INVOICE_VALUE
- id: display_table
  column_ids:
    - INVOICE.INVOICE_NUMBER
    - INVOICE.INVOICE_VENDOR_NAME
    - KPI_INVOICE_VALUE
  order_by: KPI_INVOICE_VALUE
  ascending: false
- id: display_table
  column_ids:
    - INVOICE.INVOICE_NUMBER
    - INVOICE.INVOICE_VENDOR_NAME
    - KPI_INVOICE_VALUE
  order_by: KPI_INVOICE_VALUE
  ascending: false
  limit: 20

Any field you set is fixed. Any field you omit is decided by the LLM.

pc_at_display_table.png

Field

Type

Description

column_ids

list[string]

Column IDs (KPIs or record attributes) to display.

limit

int

Max rows to display.

order_by

string

Column ID to sort by (must be one of the column_ids).

ascending

bool

Sort direction.

Related topics