forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.tsx
More file actions
67 lines (67 loc) · 2.24 KB
/
Copy pathpage.tsx
File metadata and controls
67 lines (67 loc) · 2.24 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
export default function Home() {
return (
<main style={{ padding: "2rem", maxWidth: "800px", margin: "0 auto" }}>
<h1>MS Agent Framework (Python)</h1>
<p>Integration ID: ms-agent-python</p>
<h2 style={{ marginTop: "2rem" }}>Demos</h2>
<div style={{ display: "grid", gap: "1rem", marginTop: "1rem" }}>
<a key="agentic-chat" href="/demos/agentic-chat" className="demo-card">
<h3>Agentic Chat</h3>
<p>Natural conversation with frontend tool execution</p>
</a>
<a key="hitl" href="/demos/hitl" className="demo-card">
<h3>Human in the Loop</h3>
<p>User approves agent actions before execution</p>
</a>
<a
key="tool-rendering"
href="/demos/tool-rendering"
className="demo-card"
>
<h3>Tool Rendering</h3>
<p>Backend agent tools rendered as UI components</p>
</a>
<a
key="gen-ui-tool-based"
href="/demos/gen-ui-tool-based"
className="demo-card"
>
<h3>Tool-Based Generative UI</h3>
<p>Agent uses tools to trigger UI generation</p>
</a>
<a key="gen-ui-agent" href="/demos/gen-ui-agent" className="demo-card">
<h3>Agentic Generative UI</h3>
<p>Long-running agent tasks with generated UI</p>
</a>
<a
key="shared-state-read"
href="/demos/shared-state-read"
className="demo-card"
>
<h3>Shared State (Reading)</h3>
<p>Reading agent state from UI</p>
</a>
<a
key="shared-state-write"
href="/demos/shared-state-write"
className="demo-card"
>
<h3>Shared State (Writing)</h3>
<p>Writing to agent state from UI</p>
</a>
<a
key="shared-state-streaming"
href="/demos/shared-state-streaming"
className="demo-card"
>
<h3>State Streaming</h3>
<p>Per-token state delta streaming from agent to UI</p>
</a>
<a key="subagents" href="/demos/subagents" className="demo-card">
<h3>Sub-Agents</h3>
<p>Multiple agents with visible task delegation</p>
</a>
</div>
</main>
);
}