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
| Prop | Type | Description |
|---|---|---|
stages | {stage,url,fn,field,label}[] | Pipeline stages |
Browse the full Widget Index, the Widget Catalog, or learn the A2UI system behind it.