Authoring Custom Components¶
Learn how to define, implement, and register custom components in A2UI using the rizzcharts sample as an example. This guide focuses on authoring a component around your Angular code.
Overview¶
Authoring a new component involves four main steps:
- Define the Catalog Schema: Specify the component's properties and types in a JSON Schema.
- Define the Component (Client): Implement the UI using your framework (e.g., Angular).
- Register with the Renderer (Client): Add the component to your client-side catalog.
- Invoke from the Agent: Instruct the agent to use the component via
send_a2ui_json_to_client.
1. Defining the Catalog Schema¶
The catalog schema defines the API of your catalog. It lists available components and their properties, which the agent uses to construct UI payloads.
This schema acts as a contract between the client and the server (agent). Both must agree on this schema for rendering to work. The client advertises what catalogs it supports, and the server selects a compatible one. For details on how this handshake works, see A2UI Catalog Negotiation.
In the rizzcharts example, the catalog schema is defined in rizzcharts_catalog_definition.json.
Here is the schema for the Chart component:
"Chart": {
"type": "object",
"description": "An interactive chart that uses a hierarchical list of objects for its data.",
"properties": {
"type": {
"type": "string",
"description": "The type of chart to render.",
"enum": [
"doughnut",
"pie"
]
},
"title": {
"type": "object",
"description": "The title of the chart. Can be a literal string or a data model path.",
"properties": {
"literalString": {
"type": "string"
},
"path": {
"type": "string"
}
}
},
"chartData": {
"type": "object",
"description": "The data for the chart, provided as a list of items. Can be a literal array or a data model path.",
"properties": {
"literalArray": {
"type": "array",
"items": {
"type": "object",
"properties": {
"label": {
"type": "string"
},
"value": {
"type": "number"
},
"drillDown": {
"type": "array",
"description": "An optional list of items for the next level of data.",
"items": {
"type": "object",
"properties": {
"label": {
"type": "string"
},
"value": {
"type": "number"
}
},
"required": [
"label",
"value"
]
}
}
},
"required": [
"label",
"value"
]
}
},
"path": {
"type": "string"
}
}
}
},
"required": [
"type",
"chartData"
]
}
2. Implementing the Component (Client)¶
Implement your component using your client-side framework. For Angular, your component should extend CatalogComponent provided by @a2ui/angular/v0_9.
In the rizzcharts example, the Chart component is defined in chart.ts.
First, define the component API in TypeScript. This should match the JSON Schema defined in Step 1.
// api.ts
import {ComponentApi} from '@a2ui/web_core/v0_9';
import {z} from 'zod';
export const ChartApi = {
name: 'Chart',
schema: z.object({
type: z.enum(['doughnut', 'pie']),
title: z.string().optional(),
chartData: z.array(
z.object({
label: z.string(),
value: z.number(),
drillDown: z.array(
z.object({
label: z.string(),
value: z.number(),
})
).optional(),
})
),
}).strict(),
} satisfies ComponentApi;
Now implement the Angular component:
import {CatalogComponent} from '@a2ui/angular/v0_9';
import {Component, computed} from '@angular/core';
import {BaseChartDirective} from 'ng2-charts';
import {ChartApi} from './api';
@Component({
selector: 'a2ui-chart',
imports: [BaseChartDirective],
template: `
<div>
<h2>{{ title() }}</h2>
<canvas baseChart [data]="chartData()" [type]="chartType()"></canvas>
</div>
`,
})
export class Chart extends CatalogComponent<typeof ChartApi> {
protected readonly chartType = computed(() => this.props()['type']?.value() || 'pie');
protected readonly title = computed(() => this.props()['title']?.value() || '');
protected readonly chartData = computed(() => {
const rawData = this.props()['chartData']?.value() || [];
return {
labels: rawData.map(item => item.label),
datasets: [
{
data: rawData.map(item => item.value),
},
],
};
});
}
Keep these key points in mind when implementing components:
- Extend
CatalogComponent: This gives you access to the type-safepropssignal input. - Use
props()Signal: Access resolved properties reactively viathis.props()['propertyName']?.value(). The framework automatically handles resolving data bindings and expressions.
3. Registering with the Renderer (Client)¶
Once the component is implemented, register it in your client catalog. This maps the component name (used by agents) to the implementation class.
You use the AngularCatalog class to define your catalog.
import {AngularCatalog, BASIC_COMPONENTS, BASIC_FUNCTIONS} from '@a2ui/angular/v0_9';
import {Chart} from './chart';
import {ChartApi} from './api';
const customChartComponent = {
...ChartApi,
component: Chart
};
export const RIZZ_CHARTS_CATALOG = new AngularCatalog(
'https://github.com/.../rizzcharts_catalog_definition.json',
[...BASIC_COMPONENTS, customChartComponent],
BASIC_FUNCTIONS
);
Key points for registration:
- Eager Registration: Component classes are registered directly in the catalog definition.
4. Invoking from the Agent¶
To use the custom component, you initialize the agent with tools from the A2UI SDK that understand your catalog. The SDK handles resolving the catalog and providing examples to the model.
Here is how the flow wires up:
4.1 Session Preparation (Executor)¶
The execution layer (e.g., RizzchartsAgentExecutor) intercepts the incoming message to detect if A2UI is enabled and what catalogs the client supports. It resolves the catalog and saves it to the session state.
# In agent_executor.py
use_ui = try_activate_a2ui_extension(context)
if use_ui:
# Resolve catalog based on client capabilities
a2ui_catalog = self.schema_manager.get_selected_catalog(
client_ui_capabilities=capabilities
)
examples = self.schema_manager.load_examples(a2ui_catalog, validate=True)
# Save to session (Event contains state_delta)
await runner.session_service.append_event(
session,
Event(
actions=EventActions(
state_delta={
_A2UI_ENABLED_KEY: True,
_A2UI_CATALOG_KEY: a2ui_catalog,
_A2UI_EXAMPLES_KEY: examples,
}
),
),
)
4.2 Agent Tool Setup¶
The Agent uses SendA2uiToClientToolset to give the agent a tool that it can use to send A2UI to the client.
from a2ui.adk.send_a2ui_to_client_toolset import SendA2uiToClientToolset
a2ui_catalog = self.schema_manager.get_selected_catalog(
client_ui_capabilities=capabilities
)
agent.tools = [
SendA2uiToClientToolset(
a2ui_catalog=a2ui_catalog,
a2ui_enabled=True,
)
]
4.3 Tool Execution¶
Invocations of the tool in SendA2uiToClientToolset by the LLM are intercepted in the A2A Agent Executor using the A2uiEventConverter. This automatically translates tool calls into A2A Dataparts with the A2UI payload.