Skip to content
Merged
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
Binary file removed docs/assets/agent-and-renderer.png
Binary file not shown.
13 changes: 12 additions & 1 deletion docs/glossary.md → docs/concepts/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,18 @@ The A2UI protocol enables conversation between **agent** and **renderer**:
- Receives **user input**, communicated by renderer
- Updates **data** to show in UI

![agent and renderer](assets/agent-and-renderer.png)
```mermaid
sequenceDiagram
participant Renderer as A2UI Renderer
participant Agent as A2UI Agent

Renderer->>Agent: Catalog & instructions

loop Agentic flow
Agent->>Renderer: Data + UI Updates. Function calls.
Renderer->>Agent: User input
end
Comment thread
ditman marked this conversation as resolved.
```

While the protocol is designed for **AI-empowered agents**, it can work with deterministic agents as well. For example, an agent may return a pre-canned A2UI UI.

Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This section explains the fundamental architecture of A2UI. Understanding these concepts will help you build effective agent-driven interfaces.

See [Glossary](../glossary.md) for short definitions of key terms.
See [Glossary](glossary.md) for short definitions of key terms.

## The Big Picture

Expand Down
1 change: 1 addition & 0 deletions mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ nav:
- A2UI Composer ⭐: composer.md
- Concepts:
- Overview: concepts/overview.md
- Glossary: concepts/glossary.md
- Data Flow: concepts/data-flow.md
- Components & Structure: concepts/components.md
- Data Binding: concepts/data-binding.md
Expand Down
Loading