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
Copy file name to clipboardExpand all lines: src/content/docs/agents/index.mdx
+21-3Lines changed: 21 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,11 +23,11 @@ import {
23
23
Tabs,
24
24
} from"~/components";
25
25
26
-
Build and deploy AI-powered Agents on Cloudflare that can autonomously perform tasks, communicate with clients in real time, persist state, execute long-running and repeat tasks on a schedule, send emails, run asynchronous workflows, browse the web, query data from your Postgres database, call AI models, support human-in-the-loop use-cases, and more.
26
+
The Agents SDK enables you to build and deploy AI-powered agents that can autonomously perform tasks, communicate with clients in real time, call AI models, persist state, schedule tasks, run asynchronous workflows, browse the web, query data from your database, support human-in-the-loop interactions, and [a lot more](/agents/api-reference/).
27
27
28
28
### Ship your first Agent
29
29
30
-
Use the agent starter template to create your first Agent with the Agents SDK:
30
+
To use the agent starter template and create your first Agent with the Agents SDK:
Head to the guide on [building a chat agent](/agents/getting-started/build-a-chat-agent) to learn how to build and deploy an Agent to prod.
39
+
Head to the guide on [building a chat agent](/agents/getting-started/build-a-chat-agent) to learn how the starter project is built and how to use it as a foundation for your own agents.
40
40
41
41
If you're already building on [Workers](/workers/), you can install the `agents` package directly into an existing project:
42
42
43
43
```sh
44
44
npm i agents
45
45
```
46
46
47
+
And then define your first Agent by creating a class that extends the `Agent` class:
0 commit comments