changelogAnthropic

Anthropic Python SDK v0.92.0 adds Claude Managed Agents support

TL;DR

Anthropic released version 0.92.0 of its Python SDK on April 8, 2026, introducing support for Claude Managed Agents. The update enables developers to integrate agent capabilities directly through the SDK.

2 min read
0

Anthropic Python SDK v0.92.0 Adds Claude Managed Agents Support

Anthropric released version 0.92.0 of its Python SDK on April 8, 2026, with a single significant feature addition: support for Claude Managed Agents.

What's New

The update introduces API support for Claude Managed Agents, allowing developers to build and deploy agent systems through Anthropic's Python client library. This represents a programmatic interface to Anthropic's managed agent infrastructure.

Managed Agents represent a departure from developers building agents from scratch. Instead of manually orchestrating model calls, prompt engineering, and tool integration, the managed service handles agent lifecycle and execution.

SDK Version Details

  • Version: 0.92.0
  • Release date: April 8, 2026
  • Commit: 90cd200
  • Release type: Minor version bump

Developer Impact

Python developers using the Anthropic SDK can now integrate Claude Managed Agents without switching to alternative integration patterns or direct API calls. This follows Anthropic's broader push to standardize agent development workflows.

The changelog indicates this was the primary focus of the v0.92.0 release, with no breaking changes documented. Existing SDK users should be able to upgrade without modification to current code.

Context

Managed Agents represent Anthropic's response to increased demand for simplified agent development. Rather than requiring developers to build agentic systems from first principles—handling tool selection, looping, state management, and error handling—Anthropic abstracts these concerns into a managed service.

This aligns with similar offerings from other AI labs, including OpenAI's Assistants API and other managed agent platforms.

What This Means

The addition of Managed Agents support to the Python SDK lowers the barrier to agent development for Anthropic users. Developers no longer need to choose between SDK convenience and agent functionality; both are now integrated. This modest release signals continued investment in developer experience around agentic workflows, though the lack of detailed documentation in the release notes suggests builders should monitor official Anthropic documentation for implementation specifics.

Comments

Loading...