Agents, Workers - Introducing the Agents SDK
1y ago
Source
CloudflareAgents, Workers - Introducing the Agents SDKcloudflare.comWe've released the Agents SDK , a package and set of tools that help you build and ship AI Agents. You can get up and running with a chat-based AI Agent (and deploy it to Workers) that uses the Agents SDK, tool calling, and state syncing with a React-based front-end by running the following command: npm create cloudflare@latest agents-starter -- --template="cloudflare/agents-starter" # open up README.md and follow the instructions You can also add an Agent to any existing Workers application by installing the agents package directly npm i agents ... and then define your first Agent: import { Agent } from "agents" ; export class YourAgent extends Agent < Env > { // Build it out // Access state on this.state or query the Agent's database via this.sql // Handle WebSocket events with onConnect and onMessage // Run tasks on a schedule with this.schedule // Call AI models // ... and/or call other Agents. } Head over to the Agents documentation to learn more about the Agents SDK, the SDK APIs, as well as how to test and deploying agents to production.
You might also wanna read
Google Cloud Releases Agent Starter Pack for Rapid AI Agent Deployment
Google Cloud Platform has released an 'agent-starter-pack' that enables developers to deploy AI agents to Google Cloud in minutes rather tha
Agents SDK quickstart
openai.github.io·11mo ago
How to Integrate Existing AI Agents into Microsoft Teams Using TypeScript SDK
This article provides a technical guide for developers on how to integrate existing AI agents or bots into Microsoft Teams without rewriting
microsoft.github.io·2mo agoAgents SDK — TypeScript
github.com·11mo ago
Build agentic full-stack apps with Genkit
Google Ads Developer Blog

Building agents guide
OpenAI·11mo ago

Comments
Sign in to join the conversation.
No comments yet. Be the first.