product update

AWS Launches Deep Agents Framework with Bedrock AgentCore for Isolated Multi-Agent Workflows

TL;DR

AWS has launched LangChain Deep Agents, an orchestration framework that spawns isolated subagents using Amazon Bedrock AgentCore infrastructure. AgentCore provides dedicated browser MicroVMs running Chromium via Playwright and full Python environments with pre-installed data science libraries, enabling parallel agent execution without context window competition.

2 min read
0

AWS Launches Deep Agents Framework with Bedrock AgentCore for Isolated Multi-Agent Workflows

AWS has released LangChain Deep Agents, an orchestration framework that addresses context window limitations in multi-step AI workflows by delegating tasks to isolated subagents. The framework pairs with Amazon Bedrock AgentCore, which provides dedicated execution environments including browser MicroVMs and Python interpreters.

Core Infrastructure

Bedrock AgentCore provisions ephemeral MicroVMs for each subagent type. Browser subagents receive isolated Chromium instances connected via WebSocket using Playwright, with tools including navigate_browser, extract_text, click_element, type_text, scroll_page, extract_hyperlinks, and wait_for_element. Default session timeout is 10 seconds, configurable up to 60 seconds for concurrent operations.

Code Interpreter subagents run in separate MicroVMs with Python environments pre-configured with pandas, matplotlib, and numpy. Available tools include execute_code, execute_command, write_files, read_files, list_files, upload_file, and install_packages for runtime library additions.

Architecture Pattern

The framework implements a coordinator-subagent pattern. A coordinator agent receives requests, spawns specialized ephemeral subagents for parallel execution, and aggregates results. Each subagent type accesses only its specific toolkit, preventing tool sprawl and context contamination.

In AWS's reference implementation, a coordinator spawns three browser subagents in parallel for competitive research, each navigating different websites in isolated MicroVMs. An analyst subagent then receives combined findings and generates comparison charts using the Code Interpreter. The coordinator can optionally save insights to AgentCore Memory for cross-session retrieval.

Memory and Observability

AgentCore Memory provides long-term knowledge storage with extraction strategies that automatically structure insights from conversation events. According to AWS, Memory resources require at least one configured extraction strategy (such as semanticMemoryStrategy) for recall functionality to work—without strategies, only raw events are stored.

Tracing integrates with Amazon CloudWatch through AgentCore Observability or LangSmith. Each subagent execution generates distinct session IDs, confirming isolation.

Deployment Options

Developers can run Deep Agents locally with deepagents --sandbox agentcore to test AgentCore CodeInterpreter without building a complete agent. AWS also provides an AgentCore CLI for deploying agents to AgentCore Runtime as managed, session-isolated services.

The framework supports Claude Sonnet through Amazon Bedrock, using cross-region inference profiles with the us. prefix for higher availability. Sessions spin up in seconds according to AWS documentation.

Requirements

Prerequisites include an AWS account with Bedrock AgentCore access, configured AWS credentials via environment variables or CLI profile, and Python 3.11 or later. IAM permissions are detailed in AWS's AgentCore getting-started guide.

What This Means

This release directly addresses the context window limitation in multi-step agent workflows where raw content, code execution, and reasoning compete for token space. By isolating execution in dedicated MicroVMs, Deep Agents enables genuinely parallel agent operations without manual prompt-chaining. The browser MicroVM approach is particularly significant—most agent frameworks rely on HTML extraction APIs rather than full browser automation, limiting their ability to interact with dynamic web applications. AgentCore Memory's automatic extraction strategies could reduce redundant research across sessions, though effectiveness depends on extraction strategy configuration quality.

Related Articles

product update

AWS Shows How to Build Interactive MCP Apps on Amazon Bedrock AgentCore

AWS published a technical walkthrough for building MCP Apps—interactive HTML widgets rendered inside AI hosts like ChatGPT and Claude—using Amazon Bedrock AgentCore's runtime and Gateway components. The reference implementation, a unicorn rental app, demonstrates host-agnostic rich UI delivered through a single MCP server.

product update

AWS Bedrock’s August 2026 Update: Million-Token GPT-5.6, 14-Day Agent Sessions, and OpenAI’s Offensive Cyber AI

AWS's August 2026 roundup details Bedrock and AgentCore updates including million-token context for GPT-5.6 models, AgentCore runtime sessions lasting up to 14 days, OpenAI's new Daybreak Red/Blue cybersecurity models, and Claude Opus 5 availability in GovCloud with zero data retention.

product update

AWS Adds Model Caching to SageMaker HyperPod, Cuts Inference Cold Starts from 30 Minutes to Seconds

AWS has launched model caching for Amazon SageMaker Inference on HyperPod, pre-loading model weights and container images onto cluster nodes to cut inference pod startup times from tens of minutes to seconds. The feature targets large models like DeepSeek-R1, which previously took 30+ minutes to become servable during scale-out events.

product update

AWS Adds TwelveLabs Marengo Embed 3.0 to Bedrock Knowledge Bases for Video and Image Search

Amazon Bedrock Knowledge Bases now offers TwelveLabs Marengo Embed 3.0 as a managed embedding model, letting teams run natural language queries like 'show me the penalty kick' directly against video, audio, and image archives. The service is generally available in two AWS Regions, with pricing tied to standard Bedrock model invocation rates.

Comments

Loading...