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.36.0 · April 2026 · Python 3.10+

Best for

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

  • Strands SDK 1.36 with 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-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.