forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclaude-sdk-python.ts
More file actions
61 lines (59 loc) · 2.51 KB
/
Copy pathclaude-sdk-python.ts
File metadata and controls
61 lines (59 loc) · 2.51 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
import type { FrameworkOverviewData } from "./types";
const data: FrameworkOverviewData = {
slug: "claude-sdk-python",
frameworkName: "Claude Agent SDK (Python)",
iconKey: "anthropic",
header: "Bring your Claude agents to your users",
subheader:
"Connect Claude Agent SDK Python agents to CopilotKit with AG-UI so users can chat, call frontend tools, share state, and render agent output inside your app.",
bannerVideo:
"https://cdn.copilotkit.ai/docs/copilotkit/videos/coagents/overview.mp4",
guideLink: "/claude-sdk-python/quickstart",
initCommand: "npx copilotkit@latest init --framework claude-sdk-python",
featuresLink: "https://showcase.copilotkit.ai/integrations/claude-sdk-python",
supportedFeatures: [
{
title: "Frontend tools",
description:
"Let Claude call tools that run in the user's browser, then stream the result back through the AG-UI run.",
documentationLink: "/claude-sdk-python/quickstart",
demoLink:
"https://showcase.copilotkit.ai/integrations/claude-sdk-python/demos/frontend-tools",
videoUrl:
"https://cdn.copilotkit.ai/docs/copilotkit/videos/coagents/haiku.mp4",
},
{
title: "Generative UI",
description:
"Render Claude tool calls and agent state as custom React components without forcing users to read raw JSON.",
documentationLink: "/claude-sdk-python/quickstart",
demoLink:
"https://showcase.copilotkit.ai/integrations/claude-sdk-python/demos/tool-rendering",
videoUrl:
"https://cdn.copilotkit.ai/docs/copilotkit/images/coagents/human-in-the-loop-example.mp4",
},
{
title: "Shared state",
description:
"Give your Claude agent read and write access to application state so the UI and agent stay in sync.",
documentationLink: "/claude-sdk-python/quickstart",
demoLink:
"https://showcase.copilotkit.ai/integrations/claude-sdk-python/demos/shared-state-read-write",
videoUrl:
"https://cdn.copilotkit.ai/docs/copilotkit/videos/coagents/shared-state.mp4",
},
],
architectureImage:
"https://cdn.copilotkit.ai/docs/copilotkit/images/generic-agui-architecture.png",
liveDemos: [
{
type: "showcase",
title: "Claude Agent SDK Python Showcase",
description:
"Browse the live Claude Agent SDK Python demos for chat, tools, shared state, generative UI, and subagents.",
iframeUrl:
"https://showcase.copilotkit.ai/integrations/claude-sdk-python",
},
],
};
export default data;