You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// *agent* entrypoints (Copilot Skills, via LangChain / LangGraph).
128
-
// and soon: co-agents.
129
-
//
130
-
// See below.
131
-
132
-
}
133
-
```
112
+
Supports generative UI. Start in seconds:
134
113
135
114
🌟 **\<CopilotTextarea />:** <br />
136
-
AI-assisted text generation. Drop-in replacement for any `<textarea />.`<br />
115
+
Drop-in replacement for any `<textarea />.` AI-assisted text generation. <br />
137
116
Autocompletions + AI editing + generate from scratch. Grounded on your users' data and Copilot application context.<br/>
138
117
Simply change `textarea` to `CopilotTextarea`.
139
118
@@ -142,18 +121,6 @@ Simply change `textarea` to `CopilotTextarea`.
142
121
Bring specialized LLM Chains and Graphs into in-app AI Copilot, with a few lines of code (native LangChain / LangGraph, or via LangServe).
143
122
CopilotKit wraps your app, and routes relevant state as input to standalone skill chains (state can come from the frontend, backend, 3rd party integrations, or from the user).
144
123
When the chain returns, the Copilot Engine funnels its output to in-app interaction as needed.
145
-
```
146
-
const copilotKit = new CopilotBackend({
147
-
actions: [researchAgentNativeLangchain],
148
-
langserve: [
149
-
{
150
-
chainUrl: "http://my-langserve.chain",
151
-
name: "performResearch",
152
-
description: "Performs research on a given topic.",
153
-
}
154
-
],
155
-
});
156
-
```
157
124
158
125
🌟 **Co-Agents (powered by LangChain. Coming soon.):** <br />
159
126
Allow end-users to observe and intervene in an in-app agent’s operations, with native application UX.
0 commit comments