Skip to content

Commit a573072

Browse files
committed
made building blocks two columns.
1 parent a466645 commit a573072

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

docs/overview.mdx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ AG‑UI is the boundary layer where AI agents and users meet. It standardizes ho
129129

130130
## Building blocks (today & upcoming)
131131

132-
<div style={{display: 'flex', flexDirection: 'column', gap: '0.5rem', margin: '1.5rem 0'}}>
132+
<div style={{display: 'grid', gridTemplateColumns: 'repeat(2, 1fr)', gap: '1rem', margin: '1.5rem 0'}}>
133133
<div style={{border: '1px solid #e5e7eb', borderRadius: '8px', overflow: 'hidden', transition: 'all 0.3s ease', cursor: 'pointer'}} onMouseEnter={(e) => { e.currentTarget.style.borderColor = '#3b82f6'; e.currentTarget.style.boxShadow = '0 4px 12px rgba(59, 130, 246, 0.15)'; e.currentTarget.querySelector('.content').style.maxHeight = '200px'; e.currentTarget.querySelector('.content').style.opacity = '1'; }} onMouseLeave={(e) => { e.currentTarget.style.borderColor = '#e5e7eb'; e.currentTarget.style.boxShadow = 'none'; e.currentTarget.querySelector('.content').style.maxHeight = '0px'; e.currentTarget.querySelector('.content').style.opacity = '0'; }}>
134134
<div style={{padding: '1rem 1.5rem', backgroundColor: '#f9fafb', fontWeight: '600', color: '#374151'}}>
135135
Streaming chat
@@ -255,12 +255,11 @@ AG‑UI is the boundary layer where AI agents and users meet. It standardizes ho
255255
</Steps>
256256

257257
---
258-
259-
## Why AG‑UI
258+
## Why Agentic Apps need AG-UI
260259

261260
**Agentic apps break the classic request/response contract.** Agents run for longer, stream work as they go, and make nondeterministic choices that can affect your UI and state. AG‑UI defines a clean, observable boundary so frontends remain predictable while agents stay flexible.
262261

263-
### What's hard about user‑facing agents
262+
### What's hard about user‑facing agents?
264263

265264
- Agents are **long‑running** and **stream** intermediate work—often across multi‑turn sessions.
266265
- Agents are **nondeterministic** and can **control UI** in ways that must be supervised.
@@ -273,7 +272,7 @@ With AG‑UI, these become deliberate, well‑typed interactions rather than ad
273272

274273
## Supported Frameworks
275274

276-
AG-UI was born from an initial partnership between CopilotKit, LangGraph and CrewAI - and is steadily gaining integrations within the wider agentic app developer ecosystem.
275+
AG-UI was born from an initial partnership between CopilotKit, LangGraph and CrewAI - and is steadily gaining integrations across the wider AI developer ecosystem.
277276

278277
| Framework | Docs | Demos |
279278
| :----------------------- | :--- | :---- |

docs/videos/Dojo-overview.mp4

3.09 MB
Binary file not shown.

0 commit comments

Comments
 (0)