541 lines
20 KiB
YAML
541 lines
20 KiB
YAML
name: MS Agent Framework (.NET)
|
|
slug: ms-agent-dotnet
|
|
category: enterprise-platform
|
|
language: dotnet
|
|
logo: /logos/ms-agent-dotnet.svg
|
|
description: >-
|
|
CopilotKit integration with Microsoft Agent Framework for .NET via AG-UI
|
|
protocol. Full feature parity including generative UI, shared state,
|
|
human-in-the-loop, sub-agents, and streaming.
|
|
partner_docs: https://docs.copilotkit.ai/microsoft-agent-framework
|
|
repo: https://github.com/CopilotKit/CopilotKit/tree/main/showcase/integrations/ms-agent-dotnet
|
|
copilotkit_version: 2.0.0
|
|
deployed: true
|
|
docs_mode: authored
|
|
sort_order: 160
|
|
generative_ui:
|
|
- constrained-explicit
|
|
- a2ui-fixed-schema
|
|
- a2ui-dynamic-schema
|
|
interaction_modalities:
|
|
- sidebar
|
|
- embedded
|
|
- chat
|
|
not_supported_features:
|
|
- shared-state-streaming
|
|
# QUARANTINED pending a @copilotkit/react-core release. gen-ui-interrupt /
|
|
# interrupt-headless fail turn-2 on a useInterrupt/useHeadlessInterrupt
|
|
# RESUME-PATH hook bug in @copilotkit/react-core/v2: backend resumes + streams
|
|
# (HTTP 200) but the frontend never appends the confirmation assistant bubble,
|
|
# so the harness DOM settle-check times out. Fix is a published-package change
|
|
# (out of scope here); honestly marked not-supported (skipped-incapable, not
|
|
# green, not red) rather than a regression. Demos remain wired below.
|
|
- gen-ui-interrupt
|
|
- interrupt-headless
|
|
features:
|
|
- beautiful-chat
|
|
- cli-start
|
|
- agentic-chat
|
|
- prebuilt-sidebar
|
|
- prebuilt-popup
|
|
- chat-slots
|
|
- chat-customization-css
|
|
- headless-simple
|
|
- headless-complete
|
|
- frontend-tools
|
|
- frontend-tools-async
|
|
- hitl
|
|
- hitl-in-app
|
|
- hitl-in-chat
|
|
- gen-ui-tool-based
|
|
- declarative-gen-ui
|
|
- a2ui-fixed-schema
|
|
- mcp-apps
|
|
- gen-ui-agent
|
|
- tool-rendering-default-catchall
|
|
- tool-rendering-custom-catchall
|
|
- tool-rendering
|
|
- tool-rendering-reasoning-chain
|
|
- shared-state-read-write
|
|
- subagents
|
|
- readonly-state-agent-context
|
|
- multimodal
|
|
- auth
|
|
- reasoning-custom
|
|
- reasoning-default
|
|
- declarative-hashbrown
|
|
- declarative-json-render
|
|
- open-gen-ui
|
|
- open-gen-ui-advanced
|
|
- voice
|
|
- agent-config
|
|
- shared-state-read
|
|
a2ui_pattern: schema-inline
|
|
interrupt_pattern: promise-based
|
|
agent_config_pattern: shared-state
|
|
auth_pattern: microsoft-agent-framework
|
|
demos:
|
|
- id: cli-start
|
|
name: CLI Start Command
|
|
description: Copy-paste command to clone the canonical starter
|
|
tags:
|
|
- chat-ui
|
|
command: "npx copilotkit@latest init --framework ms-agent-dotnet"
|
|
- id: agentic-chat
|
|
name: Agentic Chat
|
|
description: Natural conversation with frontend tool execution
|
|
tags:
|
|
- chat-ui
|
|
route: /demos/agentic-chat
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/Program.cs
|
|
- src/app/demos/agentic-chat/page.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: chat-customization-css
|
|
name: Chat Customization (CSS)
|
|
description: Default CopilotChat re-themed via CopilotKitCSSProperties
|
|
tags:
|
|
- chat-ui
|
|
route: /demos/chat-customization-css
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/Program.cs
|
|
- src/app/demos/chat-customization-css/page.tsx
|
|
- src/app/demos/chat-customization-css/theme.css
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: tool-rendering-default-catchall
|
|
name: Tool Rendering (Default Catch-all)
|
|
description: Out-of-the-box tool rendering — backend defines the tools; the frontend adds zero custom renderers and relies on CopilotKit's built-in default UI
|
|
tags:
|
|
- generative-ui
|
|
route: /demos/tool-rendering-default-catchall
|
|
animated_preview_url:
|
|
highlight:
|
|
- src/app/demos/tool-rendering-default-catchall/page.tsx
|
|
- agent/Program.cs
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: tool-rendering-custom-catchall
|
|
name: Tool Rendering (Custom Catch-all)
|
|
description: Single branded wildcard renderer via useDefaultRenderTool — the same app-designed card paints every tool call
|
|
tags:
|
|
- generative-ui
|
|
route: /demos/tool-rendering-custom-catchall
|
|
animated_preview_url:
|
|
highlight:
|
|
- src/app/demos/tool-rendering-custom-catchall/page.tsx
|
|
- src/app/demos/tool-rendering-custom-catchall/custom-catchall-renderer.tsx
|
|
- agent/Program.cs
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: frontend-tools
|
|
name: Frontend Tools (In-App Actions)
|
|
description: Agent invokes client-side handlers registered with useFrontendTool
|
|
tags:
|
|
- interactivity
|
|
route: /demos/frontend-tools
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/Program.cs
|
|
- src/app/demos/frontend-tools/page.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: frontend-tools-async
|
|
name: Frontend Tools (Async)
|
|
description: useFrontendTool with an async handler — agent awaits a client-side async operation (simulated notes DB query) and uses the returned result
|
|
tags:
|
|
- interactivity
|
|
route: /demos/frontend-tools-async
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/Program.cs
|
|
- src/app/demos/frontend-tools-async/page.tsx
|
|
- src/app/demos/frontend-tools-async/notes-card.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: hitl
|
|
name: In-Chat Human in the Loop (Original)
|
|
description: User approves agent actions before execution
|
|
tags:
|
|
- interactivity
|
|
route: /demos/hitl
|
|
animated_preview_url:
|
|
- id: hitl-in-app
|
|
name: In-App Human in the Loop (Frontend Tools + async HITL)
|
|
description: Agent requests approval via useFrontendTool with an async handler; the approval UI pops up as an app-level modal OUTSIDE the chat, and a completion callback resolves the pending tool Promise with the user's decision
|
|
tags:
|
|
- interactivity
|
|
route: /demos/hitl-in-app
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/HitlInAppAgent.cs
|
|
- src/app/demos/hitl-in-app/page.tsx
|
|
- src/app/demos/hitl-in-app/approval-dialog.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: hitl-in-chat
|
|
name: In-Chat HITL (useHumanInTheLoop — ergonomic API)
|
|
description: Interactive approval/decision surface rendered inline in the chat via the high-level `useHumanInTheLoop` hook
|
|
tags:
|
|
- interactivity
|
|
route: /demos/hitl-in-chat
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/HitlInChatAgent.cs
|
|
- src/app/demos/hitl-in-chat/page.tsx
|
|
- src/app/demos/hitl-in-chat/time-picker-card.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: gen-ui-tool-based
|
|
name: Tool-Based Generative UI
|
|
description: Agent uses tools to trigger UI generation
|
|
tags:
|
|
- generative-ui
|
|
route: /demos/gen-ui-tool-based
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/Program.cs
|
|
- src/app/demos/gen-ui-tool-based/page.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: tool-rendering
|
|
name: Tool Rendering
|
|
description: Backend agent tools rendered as UI components
|
|
tags:
|
|
- agent-capabilities
|
|
route: /demos/tool-rendering
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/Program.cs
|
|
- src/app/demos/tool-rendering/page.tsx
|
|
- id: gen-ui-agent
|
|
name: Agentic Generative UI
|
|
description: Long-running agent tasks with generated UI
|
|
tags:
|
|
- generative-ui
|
|
route: /demos/gen-ui-agent
|
|
animated_preview_url:
|
|
- id: shared-state-streaming
|
|
name: State Streaming
|
|
description: Per-token state delta streaming from agent to UI
|
|
tags:
|
|
- agent-state
|
|
route: /demos/shared-state-streaming
|
|
animated_preview_url:
|
|
- id: shared-state-read-write
|
|
name: Shared State (Read + Write)
|
|
description: Bidirectional agent state — UI writes preferences, agent writes notes back via a set_notes tool
|
|
tags:
|
|
- agent-state
|
|
route: /demos/shared-state-read-write
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/SharedStateReadWriteAgent.cs
|
|
- agent/Program.cs
|
|
- src/app/demos/shared-state-read-write/page.tsx
|
|
- src/app/demos/shared-state-read-write/preferences-card.tsx
|
|
- src/app/demos/shared-state-read-write/notes-card.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: subagents
|
|
name: Sub-Agents
|
|
description: Supervisor delegates to research / writing / critique sub-agents with a live delegation log
|
|
tags:
|
|
- multi-agent
|
|
route: /demos/subagents
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/SubagentsAgent.cs
|
|
- agent/Program.cs
|
|
- src/app/demos/subagents/page.tsx
|
|
- src/app/demos/subagents/delegation-log.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: prebuilt-sidebar
|
|
name: "Pre-Built: Sidebar"
|
|
description: Docked sidebar chat via <CopilotSidebar />
|
|
tags:
|
|
- chat-ui
|
|
route: /demos/prebuilt-sidebar
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/Program.cs
|
|
- src/app/demos/prebuilt-sidebar/page.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: prebuilt-popup
|
|
name: "Pre-Built: Popup"
|
|
description: Floating popup chat via <CopilotPopup />
|
|
tags:
|
|
- chat-ui
|
|
route: /demos/prebuilt-popup
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/Program.cs
|
|
- src/app/demos/prebuilt-popup/page.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: chat-slots
|
|
name: Chat Customization (Slots)
|
|
description: Customize CopilotChat via its slot system
|
|
tags:
|
|
- chat-ui
|
|
route: /demos/chat-slots
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/Program.cs
|
|
- src/app/demos/chat-slots/page.tsx
|
|
- src/app/demos/chat-slots/custom-welcome-screen.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: headless-simple
|
|
name: Headless Chat (Simple)
|
|
description: Minimal custom chat surface built on useAgent
|
|
tags:
|
|
- chat-ui
|
|
route: /demos/headless-simple
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/Program.cs
|
|
- src/app/demos/headless-simple/page.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: headless-complete
|
|
name: Headless Chat (Complete)
|
|
description: Full chat implementation built from scratch on useAgent
|
|
tags:
|
|
- chat-ui
|
|
route: /demos/headless-complete
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/Program.cs
|
|
- src/app/demos/headless-complete/page.tsx
|
|
- src/app/demos/headless-complete/message-list.tsx
|
|
- src/app/demos/headless-complete/use-rendered-messages.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: gen-ui-interrupt
|
|
name: In-Chat HITL (useInterrupt — low-level primitive)
|
|
description: Interactive component rendered inline in the chat via the lower-level `useInterrupt` primitive — direct control over the interrupt lifecycle
|
|
tags:
|
|
- generative-ui
|
|
route: /demos/gen-ui-interrupt
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/InterruptAgent.cs
|
|
- src/app/demos/gen-ui-interrupt/page.tsx
|
|
- src/app/demos/gen-ui-interrupt/time-picker-card.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: declarative-gen-ui
|
|
name: Declarative Generative UI (A2UI)
|
|
description: Canonical A2UI BYOC — custom catalog (Card/StatusBadge/Metric/InfoRow/PrimaryButton) wired via a2ui.catalog on the provider; runtime injects the render_a2ui tool automatically
|
|
tags:
|
|
- generative-ui
|
|
route: /demos/declarative-gen-ui
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/DeclarativeGenUiAgent.cs
|
|
- src/app/demos/declarative-gen-ui/page.tsx
|
|
- src/app/demos/declarative-gen-ui/a2ui/catalog.ts
|
|
- src/app/demos/declarative-gen-ui/a2ui/definitions.ts
|
|
- src/app/demos/declarative-gen-ui/a2ui/renderers.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: a2ui-fixed-schema
|
|
name: Declarative Generative UI (A2UI — Fixed Schema)
|
|
description: A2UI rendering against a known client-side schema
|
|
tags:
|
|
- generative-ui
|
|
route: /demos/a2ui-fixed-schema
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/A2uiFixedSchemaAgent.cs
|
|
- src/app/demos/a2ui-fixed-schema/page.tsx
|
|
- src/app/demos/a2ui-fixed-schema/a2ui/catalog.ts
|
|
- src/app/demos/a2ui-fixed-schema/a2ui/definitions.ts
|
|
- src/app/demos/a2ui-fixed-schema/a2ui/renderers.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: mcp-apps
|
|
name: MCP Apps
|
|
description: MCP server-driven UI via activity renderers
|
|
tags:
|
|
- generative-ui
|
|
route: /demos/mcp-apps
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/McpAppsAgent.cs
|
|
- src/app/demos/mcp-apps/page.tsx
|
|
- src/app/api/copilotkit-mcp-apps/[[...slug]]/route.ts
|
|
- id: interrupt-headless
|
|
name: Headless Interrupt (testing)
|
|
description: Resolve interrupts from a plain button grid — no chat, no useInterrupt render prop
|
|
tags:
|
|
- interactivity
|
|
route: /demos/interrupt-headless
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/InterruptAgent.cs
|
|
- src/app/demos/interrupt-headless/page.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: readonly-state-agent-context
|
|
name: Readonly State (Agent Context)
|
|
description: Frontend provides read-only context to the agent via useAgentContext
|
|
tags:
|
|
- agent-state
|
|
route: /demos/readonly-state-agent-context
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/Program.cs
|
|
- src/app/demos/readonly-state-agent-context/page.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: reasoning-default
|
|
name: Reasoning (Default Render)
|
|
description: Built-in CopilotChatReasoningMessage renders without a custom slot
|
|
tags:
|
|
- generative-ui
|
|
route: /demos/reasoning-default
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/ReasoningAgent.cs
|
|
- src/app/demos/reasoning-default/page.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: reasoning-custom
|
|
name: Reasoning (Custom Render)
|
|
description: Custom reasoning slot renders the model's visible thinking chain
|
|
tags:
|
|
- generative-ui
|
|
route: /demos/reasoning-custom
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/ReasoningAgent.cs
|
|
- src/app/demos/reasoning-custom/page.tsx
|
|
- src/app/demos/reasoning-custom/reasoning-block.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: tool-rendering-reasoning-chain
|
|
name: Tool Rendering + Reasoning Chain (testing)
|
|
description: Sequential tool calls with reasoning tokens rendered side-by-side
|
|
tags:
|
|
- generative-ui
|
|
route: /demos/tool-rendering-reasoning-chain
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/ReasoningAgent.cs
|
|
- src/app/demos/tool-rendering-reasoning-chain/page.tsx
|
|
- src/app/demos/tool-rendering-reasoning-chain/weather-card.tsx
|
|
- src/app/demos/tool-rendering-reasoning-chain/flight-list-card.tsx
|
|
- src/app/api/copilotkit/route.ts
|
|
- id: declarative-json-render
|
|
name: BYOC json-render
|
|
description: Streaming hierarchical JSON UI spec rendered via @json-render/react, with a Zod-validated catalog (MetricCard + PieChart + BarChart)
|
|
tags:
|
|
- generative-ui
|
|
route: /demos/declarative-json-render
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/ByocJsonRenderAgent.cs
|
|
- src/app/demos/declarative-json-render/page.tsx
|
|
- src/app/demos/declarative-json-render/json-render-renderer.tsx
|
|
- src/app/demos/declarative-json-render/registry.tsx
|
|
- src/app/demos/declarative-json-render/catalog.ts
|
|
- src/app/demos/declarative-json-render/metric-card.tsx
|
|
- src/app/demos/declarative-json-render/charts/bar-chart.tsx
|
|
- src/app/demos/declarative-json-render/charts/pie-chart.tsx
|
|
- src/app/demos/declarative-json-render/types.ts
|
|
- src/app/demos/declarative-json-render/suggestions.ts
|
|
- src/app/api/copilotkit-declarative-json-render/route.ts
|
|
- id: beautiful-chat
|
|
name: Beautiful Chat
|
|
description: Canonical polished starter chat — brand fonts, theme tokens, suggestion pills
|
|
tags:
|
|
- chat-ui
|
|
route: /demos/beautiful-chat
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/BeautifulChatAgent.cs
|
|
- src/app/demos/beautiful-chat/page.tsx
|
|
- src/app/demos/beautiful-chat/components/example-layout/index.tsx
|
|
- src/app/demos/beautiful-chat/components/example-canvas/index.tsx
|
|
- src/app/demos/beautiful-chat/components/generative-ui/charts/bar-chart.tsx
|
|
- src/app/demos/beautiful-chat/components/generative-ui/charts/pie-chart.tsx
|
|
- src/app/demos/beautiful-chat/hooks/use-example-suggestions.tsx
|
|
- src/app/demos/beautiful-chat/hooks/use-generative-ui-examples.tsx
|
|
- src/app/api/copilotkit-beautiful-chat/route.ts
|
|
- id: multimodal
|
|
name: Multimodal Attachments
|
|
description: Image and PDF uploads via CopilotChat attachments, processed by a vision-capable agent
|
|
tags:
|
|
- chat-ui
|
|
route: /demos/multimodal
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/MultimodalAgent.cs
|
|
- src/app/demos/multimodal/page.tsx
|
|
- src/app/demos/multimodal/sample-attachment-buttons.tsx
|
|
- src/app/api/copilotkit-multimodal/route.ts
|
|
- id: auth
|
|
name: Authentication
|
|
description: Bearer-token gate via runtime onRequest hook with unauthenticated / authenticated states
|
|
tags:
|
|
- chat-ui
|
|
route: /demos/auth
|
|
animated_preview_url:
|
|
highlight:
|
|
- src/app/demos/auth/page.tsx
|
|
- src/app/demos/auth/auth-banner.tsx
|
|
- src/app/demos/auth/use-demo-auth.ts
|
|
- src/app/demos/auth/demo-token.ts
|
|
- src/app/api/copilotkit-auth/[[...slug]]/route.ts
|
|
- id: declarative-hashbrown
|
|
name: BYOC Hashbrown
|
|
description: Streaming structured output via @hashbrownai/react, rendering a sales dashboard catalog (MetricCard + PieChart + BarChart)
|
|
tags:
|
|
- generative-ui
|
|
route: /demos/declarative-hashbrown
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/ByocHashbrownAgent.cs
|
|
- src/app/demos/declarative-hashbrown/page.tsx
|
|
- src/app/demos/declarative-hashbrown/hashbrown-renderer.tsx
|
|
- src/app/demos/declarative-hashbrown/metric-card.tsx
|
|
- src/app/demos/declarative-hashbrown/charts/bar-chart.tsx
|
|
- src/app/demos/declarative-hashbrown/charts/pie-chart.tsx
|
|
- src/app/demos/declarative-hashbrown/types.ts
|
|
- src/app/demos/declarative-hashbrown/suggestions.ts
|
|
- src/app/api/copilotkit-declarative-hashbrown/route.ts
|
|
- id: open-gen-ui
|
|
name: Fully Open-Ended Generative UI
|
|
description: Agent generates UI from an arbitrary component library
|
|
tags:
|
|
- generative-ui
|
|
route: /demos/open-gen-ui
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/OpenGenUiAgent.cs
|
|
- src/app/demos/open-gen-ui/page.tsx
|
|
- src/app/api/copilotkit-ogui/route.ts
|
|
- id: open-gen-ui-advanced
|
|
name: "Open-Ended Gen UI (Advanced: with frontend function calling)"
|
|
description: Agent-authored UI that can invoke frontend sandbox functions from inside the iframe
|
|
tags:
|
|
- generative-ui
|
|
route: /demos/open-gen-ui-advanced
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/OpenGenUiAdvancedAgent.cs
|
|
- src/app/demos/open-gen-ui-advanced/page.tsx
|
|
- src/app/demos/open-gen-ui-advanced/sandbox-functions.ts
|
|
- src/app/demos/open-gen-ui-advanced/suggestions.ts
|
|
- src/app/api/copilotkit-ogui/route.ts
|
|
- id: voice
|
|
name: Voice Input
|
|
description: Speech-to-text via @copilotkit/voice with a bundled sample audio button
|
|
tags:
|
|
- chat-ui
|
|
route: /demos/voice
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/Program.cs
|
|
- src/app/demos/voice/page.tsx
|
|
- src/app/demos/voice/sample-audio-button.tsx
|
|
- src/app/api/copilotkit-voice/[[...slug]]/route.ts
|
|
- id: agent-config
|
|
name: Agent Config Object
|
|
description: Forward a typed config object (tone / expertise / response length) from the provider to the agent's dynamic system prompt
|
|
tags:
|
|
- platform
|
|
route: /demos/agent-config
|
|
animated_preview_url:
|
|
highlight:
|
|
- agent/AgentConfigAgent.cs
|
|
- src/app/demos/agent-config/page.tsx
|
|
- src/app/demos/agent-config/config-card.tsx
|
|
- src/app/demos/agent-config/use-agent-config.ts
|
|
- src/app/demos/agent-config/config-types.ts
|
|
- src/app/api/copilotkit-agent-config/route.ts
|