← All widgetsAdvancedReactive & Platform

Pipeline

Chained reactive data stages.

A reactive data pipeline of chained stages β€” fetch β†’ transform β†’ filter β†’ count/extract.

type Β· pipeline
A platform-level / reactive component.

How to use it

Just ask for it in chat β€” the agent emits this widget and the shell renders it:

Try saying
β€œfetch this JSON feed and count the items”

Example

The agent returns this A2UI component (inside the components array of a /chat response):

pipeline.json
{
  "type": "pipeline",
  "stages": [
    {
      "stage": "fetch",
      "url": "/api/widget/news",
      "label": "Headlines"
    },
    {
      "stage": "count",
      "label": "Total"
    }
  ]
}

Properties

PropTypeDescription
stages{stage,url,fn,field,label}[]Pipeline stages

Browse the full Widget Index, the Widget Catalog, or learn the A2UI system behind it.