mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
ad629e1779
Update user-facing references from "LangGraph" to "LangChain" per CPK-7186. The integration label, descriptions, and agent terminology now use "LangChain" while preserving "LangGraph" for technical references (Platform, Studio, CLI, StateGraph, code/package names, and API references). - Rename integration label in integrations.ts, meta.json, integration-grid, feature-matrix, quickstart-dropdown, and link-validation - Update ~47 MDX docs: "LangGraph agent(s)" → "LangChain agent(s)" - Update FAQ, snippets, and learn section references - Keep URL paths (/langgraph) unchanged for backward compatibility - Keep all code imports, package names, and LangGraph Platform/Studio/CLI as-is https://claude.ai/code/session_01JAQ7P3GEeP2bGZtc6V45WY
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 LangChain agent can be used with CopilotKit. However, creating deep agentic
|
|
experiences with CopilotKit requires our LangChain 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>
|