DEV Community

Cover image for Anthropic SDK v0.118.0 Adds Managed Agents — Plus Rust 1.97.0 & Latest Claude Models
soy
soy

Posted on • Originally published at media.patentllm.org

Anthropic SDK v0.118.0 Adds Managed Agents — Plus Rust 1.97.0 & Latest Claude Models

Today's engineering digest is packed with AI advancements, featuring the Anthropic SDK v0.118.0 which now supports managed agents, alongside the announcement of Claude Sonnet 5 and Claude Opus 5 integration into GitHub Copilot and LangChain. Developers also received the latest Rust 1.97.0 release, while Google shared insights into scaling agentic RL training.

Cloud AI, APIs & MCP

Anthropic's Python SDK introduces robust support for Managed Agents and streaming, while a new Claude Sonnet 5 model is announced. Concurrently, Google unveils Tunix, a JAX-native library designed to optimize high-throughput training for multi-turn, tool-using LLM reasoning agents on TPUs.

Anthropic SDK (Python) v0.118.0 Released with Managed Agents Support (Anthropic SDK (Python))

Source: Anthropic SDK (Python)

Anthropic has released version 0.118.0 of its Python SDK, introducing significant enhancements for developers working with AI agents. This update adds comprehensive support for the 'Managed Agents model effort,' providing initial session events and capabilities for threads delta streaming. This is a crucial step towards building more sophisticated and responsive AI agents using Anthropic's models. The inclusion of initial session events allows developers to better manage the lifecycle and state of agent interactions from the outset, enabling more robust conversational flows and tool-use scenarios.

Furthermore, the addition of threads delta streaming is a key feature for improving real-time interaction and efficiency. Instead of waiting for a complete agent response, developers can now receive incremental updates as the agent processes information and generates output. This dramatically reduces perceived latency and allows for more dynamic user interfaces, particularly for complex, multi-turn agentic applications. These new API features facilitate the development of agents that can perform more intricate tasks, engage in longer conversations, and integrate more seamlessly with external tools and systems, aligning with the growing demand for advanced agentic AI.

This SDK update is a game-changer for agent development on Anthropic. 'Managed Agents' and 'threads delta streaming' mean smoother, more real-time, and stateful agent interactions via the API, making it far easier to build complex agentic workflows.

Anthropic Announces Claude Sonnet 5 (Anthropic)

Source: Anthropic

Anthropic has officially announced 'Claude Sonnet 5,' indicating a new iteration of its mid-tier Claude model. While specific technical details, benchmarks, or API availability were not immediately released in this initial announcement, the 'Sonnet' series typically represents a balance of intelligence, speed, and cost-effectiveness, making it suitable for a wide range of enterprise applications and general-purpose AI tasks. Previous Sonnet models have been lauded for their strong performance in reasoning, coding, and multi-turn conversations, offering a compelling option for developers who require capable AI without the higher latency or cost of larger, more powerful models like Claude Opus.

This announcement suggests Anthropic's continued commitment to refining its model lineup and catering to diverse computational and application requirements. Developers and businesses can anticipate improvements in areas such as instruction following, context window handling, and overall accuracy, further enhancing Claude's utility for tasks ranging from content generation and summarization to complex data analysis and customer support. The release of Sonnet 5 is a significant update for the Claude ecosystem, potentially offering new capabilities or performance gains that could impact how enterprises leverage conversational AI.

A new Sonnet model is always exciting. Sonnet models generally hit a sweet spot for practical applications, so Claude Sonnet 5 could bring significant performance-per-cost improvements for existing workloads or unlock new use cases for developers.

Google Scales Agentic RL: High-Throughput Agentic Training with Tunix (Google Developers Blog)

Source: Google Developers Blog

Google has introduced Tunix, a new JAX-native post-training library designed to address and eliminate TPU idling bottlenecks when training multi-turn, tool-using LLM reasoning agents. This library aims to maximize hardware throughput by intelligently combining highly concurrent execution and data-parallel training, crucial for efficiently scaling reinforcement learning (RL) processes for complex AI agents. Traditional agentic training often suffers from inefficiencies due to the sequential nature of agent-environment interactions and the varying computational demands of different agent modules, leading to underutilized hardware.

Tunix tackles these challenges by allowing developers to orchestrate agent training more effectively on Google's powerful TPU infrastructure. Its JAX-native design ensures seamless integration with Google's preferred machine learning framework, enabling high-performance computation and automatic differentiation. By focusing on multi-turn, tool-using agents, Tunix directly supports the advancement of more capable and versatile AI systems that can interact with complex environments and leverage external resources. This release is a valuable resource for researchers and engineers pushing the boundaries of agentic AI, offering a practical solution to optimize the demanding computational requirements of cutting-edge agent training.

Tunix seems like a powerful tool for anyone serious about training complex, tool-using agents on Google's TPUs. Addressing TPU idling with JAX-native solutions for RL is exactly what's needed to scale agentic research and development efficiently.

Full Cloud AI, APIs & MCP archive

Rust, Cloudflare & Dev Stack

The Rust ecosystem sees its latest core language release with Rust 1.97.0, bringing new lints and type equivalencies. Developers also gain access to Anthropic's Claude Opus 5 model across both GitHub Copilot and the LangChain Anthropic library, significantly enhancing AI-driven development and RAG application capabilities.

Announcing Rust 1.97.0 (Rust Blog)

Source: Rust Blog

The Rust team has announced the release of Rust 1.97.0, marking another significant update to the popular systems programming language. This version introduces several important enhancements aimed at improving developer productivity, code quality, and the overall reliability of Rust applications. Key among the language changes is the treatment of Result<T, Uninhabited> and ControlFlow<Uninhabited, T> as equivalent to T for the must_use lint, which can simplify type handling and promote more idiomatic error management patterns.

Furthermore, Rust 1.97.0 adds an allow-by-default dead_code_pub_in_binary lint. This new lint helps identify and flag unused pub items within binary crates, empowering developers to maintain cleaner codebases, reduce binary sizes, and enhance the performance of their applications by eliminating unnecessary code. As with every release, this update also includes numerous bug fixes, performance improvements, and stabilization of previously experimental features, ensuring Rust remains a powerful and efficient choice for demanding software projects.

This update brings steady improvements to Rust's language features and developer experience, particularly useful for writing cleaner, more efficient code by tightening linting and clarifying type behavior.

Claude Opus 5 is now available in GitHub Copilot (GitHub Changelog)

Source: GitHub Changelog

GitHub Copilot has integrated Anthropic's Claude Opus 5, a significant upgrade that enhances the AI assistant's capabilities for developers. Claude Opus 5, known for its advanced reasoning, extended context windows, and improved performance on complex tasks, is now accessible directly within GitHub Copilot. This integration empowers developers to leverage a state-of-the-art large language model for a wide array of coding challenges.

The addition of Claude Opus 5 is particularly beneficial for complex, long-running coding tasks that demand careful reasoning, effective tool use, and highly reliable code generation. Developers can expect more accurate and contextually relevant suggestions, improved debugging assistance, and better understanding of intricate project structures. This move underscores GitHub's commitment to providing cutting-edge AI tools that directly impact developer productivity and the quality of their software.

Integrating a top-tier model like Claude Opus 5 into Copilot is a game-changer for tackling complex coding problems, offering a significant boost in reasoning and reliability for AI-assisted development.

LangChain langchain-anthropic==1.5.2 adds Claude Opus 5 support (LangChain)

Source: LangChain

The LangChain ecosystem continues to evolve with the release of langchain-anthropic==1.5.2, which now officially includes support for Anthropic's Claude Opus 5 model. This update is a crucial development for practitioners and developers building Retrieval Augmented Generation (RAG) applications and other large language model (LLM) powered solutions.

By integrating Claude Opus 5, developers using LangChain can now leverage one of the most powerful and sophisticated LLMs available, known for its superior reasoning abilities, capacity for handling longer contexts, and enhanced performance across diverse AI tasks. This enables the creation of more intelligent, nuanced, and capable RAG systems, conversational AI agents, and data analysis tools. Users can simply upgrade their langchain-anthropic dependency to version 1.5.2 to immediately gain access to Claude Opus 5's advanced features, ensuring their applications remain at the forefront of AI innovation and offer cutting-edge capabilities.

This LangChain update is essential for RAG developers, allowing immediate integration of Claude Opus 5 into their applications and unlocking more powerful, intelligent LLM solutions.

Full Rust, Cloudflare & Dev Stack archive


Compiled daily from official release feeds, vendor changelogs and engineering blogs. Archive: https://media.patentllm.org

Top comments (0)