Skip to content

Amazon Bedrock Agents

AWS-native agents on Bedrock. Two coexisting stacks: AgentCore (the managed runtime with secure sandboxes) and Strands SDK (the open-source Python/TypeScript framework). Plus multi-agent collaboration, A2A protocol, and native IAM.

Install

Terminal window
pip install boto3 strands-agents

Version

Strands 1.42.0 · June 2026 · Python 3.10+

Best for

AWS-native workloads, secure sandboxed agents, enterprise IAM.

What’s new in Strands 1.42.0 (June 2026)

Section titled “What’s new in Strands 1.42.0 (June 2026)”
  • v1.37.0–1.42.0 (April–June 2026) — Six minor releases. Core symbols (Agent, tool, AgentBase, AgentSkills, Plugin, Skill, Snapshot, ToolContext, ModelRetryStrategy, MultiAgentPlugin) verified against installed strands-agents==1.42.0 (.routine-envs/refresh-py, 2026-06-07); 23 top-level exports confirmed; no DeprecationWarning emissions.
  • v1.36.0 (April 2026) — Expanded tool library, refined tracing, TypeScript parity.
  • AgentCore GA — secure sandbox runtimes, managed memory, identity via AWS IAM.
  • Multi-agent collaboration — supervisor-style routing between Bedrock agents.
  • A2A protocol — interop with OpenAI SDK, Claude SDK, LangGraph, Google ADK.
import boto3
client = boto3.client("bedrock-agent-runtime")
response = client.invoke_agent(
agentId="AGENT_ID",
agentAliasId="ALIAS_ID",
sessionId="session-1",
inputText="Help me analyse Q3 sales data.",
)
for event in response["completion"]:
print(event)

Ready? Start Zero → Hero Step 1 →


DateVersionChanges
2026-06-07Strands 1.42.0Version bumped 1.36.0 → 1.42.0 (six minor releases: 1.37.0–1.42.0); version card updated; “What’s new” section updated; broken __version__ import fixed in strands SDK guide (symbol absent from 1.42.0 package; replaced with importlib.metadata.version); revision history entry added. Core symbols (Agent, tool, AgentBase, AgentSkills, Plugin, Skill, Snapshot, ToolContext, ModelRetryStrategy, MultiAgentPlugin) verified against installed strands-agents==1.42.0 (.routine-envs/refresh-py, 2026-06-07); 23 top-level exports confirmed.
2026-04-21Strands 1.36Index redesigned with Zero → Hero + Jump-to-topic grid.
April 17, 2026Strands 1.36.0Expanded tool library, refined tracing, TS parity.
March 2025AgentCore GASecure sandbox runtimes; managed memory; multi-agent collaboration.
November 2025Strands ~1.0Initial SDK documentation.