Back
AI summary
Written by AI from the official notes. Check them for exact details.Anthropic released v1.0 of the Python SDK with significant updates and toolset availability on Google Cloud.
- Python SDK v1.0 released with HTTP layer upgrade to httpx2.
- Removed deprecated features including legacy Text Completions API.
- Async client response handling updated to require 'await response.parse()'.
- Computer and browser toolsets available on Google Cloud for multiple Claude models.
Why it matters: Developers using the Python SDK and Claude models should review changes for compatibility and new features.
Full release notes2 changes
- We've released v1.0 of the Python SDK. The SDK's HTTP layer moves from
httpxto httpx2, a maintained, API-compatible fork: build customhttp_client,Timeout, and transport objects fromhttpx2(theDefaultHttpxClienthelpers are unchanged), and callhttpx2.alias_httpx()at startup if you rely on tracing or mocking libraries that patchhttpx. v1.0 requires Python 3.10 or later and removes long-deprecated surface, including the legacy Text Completions API, thetemperature,top_p, andtop_kparameters on Messages methods, and the tool runner's client-sidecompaction_control. On the async client,.with_raw_responseresults now needawait response.parse(), andAnthropicBedrocknow raises an error when no AWS region is configured instead of defaulting tous-east-1. See the v1 migration guide for every change with before-and-after snippets. - The computer use and browser use toolsets (
computer_toolset_20260801andbrowser_toolset_20260801) are now available on Google Cloud for Claude Fable 5, Claude Mythos 5, Claude Opus 5, Claude Sonnet 5, and Claude Opus 4.8. Requests use the sametoolsentries as on the Claude API.