-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeck.html
More file actions
319 lines (286 loc) · 7.15 KB
/
deck.html
File metadata and controls
319 lines (286 loc) · 7.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Agent Architectures</title>
<style>
:root {
--bg-primary: #0a0a0f;
--bg-card: #1a1a2e;
--border: #2a2a4a;
--text-primary: #e8e8f0;
--text-secondary: #9898c0;
--accent: #a78bfa;
--font-body: 'Inter', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
}
[data-theme="light"] {
--bg-primary: #f5f3ff;
--bg-card: #ffffff;
--border: #d0d0e0;
--text-primary: #1a1a2e;
--text-secondary: #6b6b8a;
--accent: #7c3aed;
}
body {
font-family: var(--font-body);
background: var(--bg-primary);
color: var(--text-primary);
padding: 0;
margin: 0;
}
.slide {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
padding: 60px;
border-bottom: 1px solid var(--border);
}
</style>
<style>
.hero-section {
padding: 60px 0 40px;
position: relative;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 14px;
border-radius: 100px;
background: rgba(var(--accent-rgb, 245, 158, 11), 0.1);
color: var(--accent);
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 16px;
border: 1px solid rgba(var(--accent-rgb, 245, 158, 11), 0.15);
}
.hero-title {
font-size: clamp(32px, 5vw, 56px);
font-weight: 900;
letter-spacing: -2px;
line-height: 1.05;
margin-bottom: 12px;
}
.hero-subtitle {
font-size: 18px;
color: var(--text-secondary);
max-width: 640px;
line-height: 1.7;
margin-bottom: 24px;
}
.hero-cta {
margin-top: 16px;
}
.hero-children {
margin-top: 24px;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(var(--stat-cols, 4), 1fr);
gap: 12px;
margin: 1em 0;
}
@media (max-width: 768px) {
.stats-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 480px) {
.stats-grid {
grid-template-columns: 1fr;
}
}
.stat-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 20px;
text-align: center;
}
.stat-icon {
font-size: 24px;
margin-bottom: 8px;
}
.stat-value {
font-size: 28px;
font-weight: 800;
letter-spacing: -1px;
color: var(--accent);
}
.stat-label {
font-size: 13px;
color: var(--text-secondary);
margin-top: 4px;
font-weight: 500;
}
.stat-trend {
font-size: 12px;
margin-top: 8px;
font-weight: 600;
}
.trend-up {
color: #34d399;
}
.trend-down {
color: #f87171;
}
.table-wrap {
overflow-x: auto;
border: 1px solid var(--border);
border-radius: 8px;
margin: 1em 0;
}
.data-table {
width: 100%;
border-collapse: collapse;
font-size: 14px;
}
.data-table th {
background: var(--bg-elevated, var(--bg-card));
padding: 10px 14px;
text-align: left;
font-weight: 600;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--text-secondary);
border-bottom: 1px solid var(--border);
}
.data-table td {
padding: 10px 14px;
border-bottom: 1px solid var(--border);
color: var(--text-secondary);
}
.data-table tr:last-child td {
border-bottom: none;
}
.data-table tr:hover td {
background: var(--bg-card-hover, rgba(255, 255, 255, 0.02));
}
.data-table caption {
padding: 8px 14px;
text-align: left;
font-weight: 600;
color: var(--text-primary);
caption-side: top;
}
.callout {
display: flex;
gap: 12px;
padding: 16px 20px;
border-radius: 8px;
margin: 1em 0;
border-left: 4px solid;
}
.callout-info {
background: rgba(96, 165, 250, 0.1);
border-color: #60a5fa;
}
.callout-warning {
background: rgba(245, 158, 11, 0.1);
border-color: #f59e0b;
}
.callout-tip {
background: rgba(52, 211, 153, 0.1);
border-color: #34d399;
}
.callout-error {
background: rgba(248, 113, 113, 0.1);
border-color: #f87171;
}
.callout-icon {
font-size: 20px;
flex-shrink: 0;
margin-top: 2px;
}
.callout-body {
font-size: 14px;
color: var(--text-secondary);
line-height: 1.6;
}
.callout-title {
display: block;
margin-bottom: 4px;
color: var(--text-primary);
}
</style>
</head>
<body><!-- fm:section:0:hero -->
<div class="hero-section">
<div class="hero-badge">Lightning Talk</div>
<h1 class="hero-title">AI Agent Architectures: From Simple to Sophisticated</h1>
<p class="hero-subtitle">A survey of agent patterns including ReAct, Plan-and-Execute, and
Multi-Agent systems</p>
</div>
<!-- /fm:section:0:hero -->
<!-- fm:section:1:stats-grid -->
<div class="stats-grid" style="--stat-cols:3">
<div class="stat-card">
<div class="stat-value">3</div>
<div class="stat-label">Architecture Types</div>
</div>
<div class="stat-card">
<div class="stat-value">12×</div>
<div class="stat-label">Performance Gain</div>
</div>
<div class="stat-card">
<div class="stat-value">89%</div>
<div class="stat-label">Task Success Rate</div>
</div>
</div>
<!-- /fm:section:1:stats-grid -->
<!-- fm:section:2:data-table -->
<div class="table-wrap">
<table class="data-table">
<caption>Architecture Comparison</caption>
<thead>
<tr>
<th>Pattern</th>
<th>Complexity</th>
<th>Best For</th>
<th>Success Rate</th>
</tr>
</thead>
<tbody>
<tr>
<td>ReAct (Reason+Act)</td>
<td>Low</td>
<td>Simple Q&A, tool use</td>
<td>76%</td>
</tr>
<tr>
<td>Plan-and-Execute</td>
<td>Medium</td>
<td>Multi-step tasks</td>
<td>85%</td>
</tr>
<tr>
<td>Multi-Agent Systems</td>
<td>High</td>
<td>Complex workflows</td>
<td>89%</td>
</tr>
<tr>
<td>Reflexion</td>
<td>Medium</td>
<td>Self-correcting tasks</td>
<td>82%</td>
</tr>
</tbody>
</table>
</div>
<!-- /fm:section:2:data-table -->
<!-- fm:section:3:callout -->
<div class="callout callout-info"> <span class="callout-icon">🔑</span>
<div class="callout-body"> <strong class="callout-title">Key Takeaway</strong> <span
class="callout-text">Multi-agent systems with specialized sub-agents consistently outperform
monolithic agents on complex, multi-domain tasks by 15-25%.</span> </div>
</div>
<!-- /fm:section:3:callout -->
</body>
</html>