Agents, Workers - Agents SDK adds background sub-agents and a unified turn entry point
8d ago
Source
CloudflareAgents, Workers - Agents SDK adds background sub-agents and a unified turn entry pointcloudflare.comThe latest release of the Agents SDK makes it easier to run long work in the background, drive turns through one entry point, and keep chat agents working through deploys, evictions, and reconnects. This release adds first-class detached (background) sub-agent runs with live progress and durable milestones, a single runTurn turn-admission entry point, and a large round of recovery and reliability fixes that continue converging @cloudflare/think and @cloudflare/ai-chat onto one model. Background sub-agents with progress and milestones runAgentTool can now dispatch a sub-agent without blocking the calling turn. A detached run returns a handle immediately and is owned by a durable, eviction-surviving backbone instead of being abandoned when the dispatching turn ends. JavaScript class OrdersAgent extends Think { async startImport ( input ) { // Fire-and-forget, or wire a durable completion callback // (by method name, like schedule()): await this . runAgentTool ( ImportAgent , { input , detached : { onFinish : "onImportDone" , maxBudgetMs : 60 * 60 * 1000 }, } ) ; } // result.status: "completed"
You might also wanna read
Agents SDK quickstart
openai.github.io·11mo ago
Realtime agent demo
vimeo.com·11mo ago
Deep Agents Introduces Embedded Interpreters for Agent Code Execution Between Tool Calls and Sandboxes
Deep Agents has introduced a new feature called "interpreters" — small embedded runtimes (like Python or Node REPLs) that agents can use to
Vercel's Agent Stack: A Unified Framework for Building Production-Grade AI Agents
Vercel introduces the Agent Stack, a comprehensive framework for building production-grade AI agents. The article explains that every AI age
TanStack AI Launches Sandbox Layer for Running Coding Agents via Single chat() Call
TanStack AI introduces a new sandbox layer that simplifies running coding agents in applications. It solves two core problems: the need for
Cloud Agents Failing to Start: Bug Report on Background Agent Spin-Up Failure
A bug report describing that cloud agents (Background Agents for GitHub, Slack, Web, Linear) are failing to spin up. They were working the p
forum.cursor.com·1mo ago
Comments
Sign in to join the conversation.
No comments yet. Be the first.