Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,18 +134,18 @@ The best way to understand A2UI is to run the samples.
Open a new terminal window:

```bash
# Install and build the Markdown renderer
cd renderers/markdown/markdown-it
# Install and build the Web Core library
cd renderers/web_core
npm install
npm run build

# Install and build the Web Core library
cd ../../web_core
# Install and build the Markdown renderer
cd ../markdown/markdown-it
npm install
npm run build

# Install and build the Lit renderer
cd ../lit
cd ../../lit
npm install
npm run build

Expand Down
20 changes: 20 additions & 0 deletions samples/agent/adk/restaurant_finder/examples/confirmation.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,26 @@
"component": {
"Divider": {}
}
},
{
"id": "confirmation-column",
"component": {
"Column": {
"children": {
"explicitList": [
"confirm-title",
"confirm-image",
"divider1",
"confirm-details",
"divider2",
"confirm-dietary",
"divider3",
"confirm-text"
]
},
"alignment": "center"
}
}
}
]
}
Expand Down