Skip to content

Commit a865536

Browse files
authored
Update README.md
1 parent 554ab3e commit a865536

File tree

1 file changed

+6
-39
lines changed

1 file changed

+6
-39
lines changed

README.md

+6-39
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ Build, deploy, and operate best-in-class AI Copilots.
3030
</h2>
3131

3232
<h3 align="center">
33-
App-aware AI chatbots, in-app agents, and AI Textareas <br />
34-
that can interact with your app based on context.
33+
in-app AI chatbots, AI agents, and AI Textareas.
3534
</h3>
3635

3736
<div align="center">
@@ -78,13 +77,13 @@ App-aware AI chatbots, in-app agents, and AI Textareas <br />
7877

7978
<div align="center">
8079
<img src="https://github.com/CopilotKit/CopilotKit/assets/746397/ea8edde4-dbde-40b4-bb60-e55bd1023094" width="700px" max-width="100%" style="border-radius: 35px;">
80+
<img src="https://github.com/CopilotKit/CopilotKit/assets/746397/731a57bf-ece4-48aa-8792-7bf288fdc3fd" width="700px" max-width="100%" style="border-radius: 35px;">
81+
<img src="https://github.com/CopilotKit/CopilotKit/assets/746397/2e47721d-01a1-4719-9871-1dbdbea638ac" width="700px" max-width="100%" style="border-radius: 35px;">
8182
<img src="https://github.com/CopilotKit/CopilotKit/assets/746397/1d0373f6-5932-4c4e-84e9-bfdbad53f38f" width="700px" max-width="100%" style="border-radius: 35px;">
82-
<img src="https://github.com/CopilotKit/CopilotKit/assets/746397/e01c2825-bafd-4539-8b18-665c2cdcac2f" width="700px" max-width="100%" style="border-radius: 35px;">
83-
<img src="https://github.com/CopilotKit/CopilotKit/assets/746397/cc7f5aee-8373-4174-a4d5-87db3c28153e" width="700px" max-width="100%" style="border-radius: 35px;">
8483
</div>
8584
<br/>
8685

87-
## Templates
86+
## "Hello World" Templates
8887

8988
<table align="center">
9089
<tr>
@@ -110,30 +109,10 @@ App-aware AI chatbots, in-app agents, and AI Textareas <br />
110109
🌟 **\<CopilotChat />:** <br />
111110
Build **app-aware AI chatbots** that can "see" the current app state + take action inside your app. <br />
112111
The AI chatbot can talk to your app frontend & backend, and to 3rd party services (Salesforce, Dropbox, etc.) via plugins. <br />
113-
Supports generative UI.
114-
Start in seconds:
115-
```
116-
export default function App() {
117-
return (
118-
<CopilotKit url="/api/copilotkit/chat"> {/* Global state & copilot logic. Put this around the entire app */}
119-
<CopilotSidebar> {/* A built-in Copilot UI (or bring your own UI). Put around individual pages, or the entire app. */}
120-
<MyAmazingContent />
121-
</CopilotSidebar>
122-
</CopilotKit>
123-
);
124-
125-
// Now you can provide *context* entrypoints (frontend, backend, 3rd party),
126-
// *action* entrypoints (frontend, backend, 3rd party),
127-
// *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:
134113

135114
🌟 **\<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 />
137116
Autocompletions + AI editing + generate from scratch. Grounded on your users' data and Copilot application context.<br/>
138117
Simply change `textarea` to `CopilotTextarea`.
139118

@@ -142,18 +121,6 @@ Simply change `textarea` to `CopilotTextarea`.
142121
Bring specialized LLM Chains and Graphs into in-app AI Copilot, with a few lines of code (native LangChain / LangGraph, or via LangServe).
143122
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).
144123
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-
```
157124

158125
🌟 **Co-Agents (powered by LangChain. Coming soon.):** <br />
159126
Allow end-users to observe and intervene in an in-app agent’s operations, with native application UX.

0 commit comments

Comments
 (0)