forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathms-agent-dotnet.ts
More file actions
71 lines (69 loc) · 3.08 KB
/
Copy pathms-agent-dotnet.ts
File metadata and controls
71 lines (69 loc) · 3.08 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
// @generated by scripts/extract-framework-overviews.ts — do not edit by hand.
import type { FrameworkOverviewData } from "./types";
const data: FrameworkOverviewData = {
slug: "ms-agent-dotnet",
frameworkName: "Microsoft Agent Framework",
iconKey: "microsoft",
header: "Bring your Microsoft Agent Framework agents to your users",
subheader:
"Give your Microsoft Agent Framework agents real user-interactivity using CopilotKit and AG-UI. Build rich, interactive, agent-powered applications.",
bannerVideo:
"https://cdn.copilotkit.ai/docs/copilotkit/videos/coagents/overview.mp4",
guideLink: "/microsoft-agent-framework/quickstart",
initCommand:
"npx copilotkit@latest create -f microsoft-agent-framework-dotnet",
featuresLink:
"https://feature-viewer.copilotkit.ai/microsoft-agent-framework-dotnet/feature",
supportedFeatures: [
{
title: "Generative UI",
description:
"Render your agent's state, progress, outputs, and tool calls with custom UI components in real-time. Bridges the gap between AI agents and user interfaces.",
documentationLink: "/microsoft-agent-framework/generative-ui",
demoLink:
"https://feature-viewer.copilotkit.ai/microsoft-agent-framework-dotnet/feature/backend_tool_rendering",
videoUrl:
"https://cdn.copilotkit.ai/docs/copilotkit/videos/coagents/haiku.mp4",
},
{
title: "Human in the Loop",
description:
"Empower users to guide agents at key checkpoints. Combine the best of AI and human judgment for more reliable and controllable agent behavior.",
documentationLink: "/microsoft-agent-framework/human-in-the-loop",
demoLink: "https://feature-viewer.copilotkit.ai",
videoUrl:
"https://cdn.copilotkit.ai/docs/copilotkit/images/coagents/human-in-the-loop-example.mp4",
},
{
title: "Shared State",
description:
"Keep your agent and your app in sync. Your agent can see everything in your app, and your app can react to your agent in real-time.",
documentationLink: "/microsoft-agent-framework/shared-state",
demoLink: "https://feature-viewer.copilotkit.ai",
videoUrl:
"https://cdn.copilotkit.ai/docs/copilotkit/videos/coagents/shared-state.mp4",
},
],
architectureImage:
"https://cdn.copilotkit.ai/docs/copilotkit/images/microsoft-agent-framework/maf-ag-ui.png",
liveDemos: [
{
type: "feature-viewer",
title: "Feature Viewer",
description:
"Explore all of the capabilities of the Microsoft Agent Framework combined with CopilotKit.",
iframeUrl:
"https://feature-viewer.copilotkit.ai/microsoft-agent-framework-dotnet/feature/agentic_chat",
},
],
tutorialLink: "/microsoft-agent-framework/quickstart",
cta: {
variant: "card",
title: "Bring your Agent Framework agents to production",
body: "Add persistent threads, observability, and the inspector with the Enterprise Intelligence Platform.",
ctaLabel: "Create a free account",
surface: "docs_microsoft_agent_framework_overview",
},
hasAfterFeaturesMdx: true,
};
export default data;