mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
17 lines
603 B
Plaintext
17 lines
603 B
Plaintext
import InstallPythonSDKSnippet from "@/snippets/install-python-sdk.mdx";
|
|
import { Tabs, Tab } from "fumadocs-ui/components/tabs";
|
|
|
|
Any LangGraph agent can be used with CopilotKit. However, creating deep agentic
|
|
experiences with CopilotKit requires our LangGraph SDK.
|
|
|
|
<Tabs groupId="language_langgraph_agent" items={["Python", "TypeScript"]} className="p-0 m-0" persist>
|
|
<Tab value="Python" className="p-0 m-0">
|
|
<InstallPythonSDKSnippet components={props.components} />
|
|
</Tab>
|
|
<Tab value="TypeScript" className="p-0 m-0">
|
|
```npm
|
|
npm install @copilotkit/sdk-js
|
|
```
|
|
</Tab>
|
|
</Tabs>
|