Skip to content

AWS Shows How to Build Multi-Step AI Agents Without Custom Orchestration Code

Short answer

AWS published a technical guide showing how to combine SageMaker AI (custom model training/hosting) with Bedrock AgentCore (managed agent runtime, memory, identity and tool orchestration) to build multi-step AI agents. It matters because it lowers the engineering bar for running reliable, stateful agents that call tools and hand off between steps β€” previously a significant custom-build effort.

What this means for operators

For a 10-200 person B2B company, this matters less as a coding tutorial and more as a signal of what's now buyable versus what still needs building. If you're running sales development, tier-1 support, or order-to-cash operations, agentic workflows that check a CRM, pull an order status, escalate to a human, and remember context across a session are exactly the kind of task these tools target. The practical takeaway isn't "go build this yourself" β€” it's that the underlying primitives (session memory, tool invocation, identity-aware agents) are now standardized enough that a consultancy or vendor can assemble a working agent for a specific process in weeks rather than months. Ops leaders should ask any automation vendor pitching "AI agents" whether they're using managed infrastructure like this, since it affects reliability, security boundaries, and how fast changes can be made later.

AWS's Machine Learning Blog published a guide detailing how to build agentic AI workflows by combining Amazon SageMaker AI with Bedrock AgentCore. The post lays out a reference pattern for teams that need agents to do more than answer a single question β€” agents that plan multi-step tasks, call external tools, retain memory across a session, and hand off between specialized sub-agents.

SageMaker AI in this pairing handles the model side: training, fine-tuning, and hosting custom or open-weight models where a company needs more control than a hosted foundation model API provides. Bedrock AgentCore supplies the agent runtime layer β€” session memory, identity and access boundaries, and orchestration for invoking tools or other agents mid-task. Together they form a stack where a company doesn't need to build its own state management, tool-calling framework, or agent-to-agent handoff logic from scratch.

This is an infrastructure story more than a model story: nothing here is a new model capability. What's changed is the availability of a managed, documented path for assembling multi-step agents on AWS, with AgentCore handling the plumbing that most teams previously had to write themselves β€” session persistence, credential scoping per agent, and structured tool invocation.

For B2B companies in the 10-200 employee range, the direct relevance isn't that internal engineering teams should start wiring SageMaker and AgentCore together. Few companies that size have the SageMaker MLOps expertise or the volume to justify custom model hosting. The relevance is upstream of that: this is the kind of building block that automation vendors and consultancies β€” including the tools your sales, support and ops teams already touch β€” are increasingly assembling on top of. When a vendor claims their support bot can look up an order, escalate to a human, and remember the last three exchanges in a session, this is roughly the kind of managed infrastructure making that reliable at reasonable cost, rather than a fragile custom script.

The practical use is diligence. When evaluating an AI agent for lead qualification, ticket triage, or order processing, operators should ask what runtime the agent uses for memory and tool access, whether sessions are isolated per customer or per case, and how access is scoped when the agent calls out to a CRM or billing system. Answers grounded in managed infrastructure like AgentCore (or an equivalent from another cloud provider) suggest a more auditable, maintainable setup than a bespoke prompt-chaining script β€” one that's more likely to survive a vendor's own team turnover or a scaling event.

Unconfirmed: pricing details for combined SageMaker AI and Bedrock AgentCore usage were not fully broken out in the source post, and should be checked directly against current AWS pricing before any cost comparison is made.

Source: AWS Machine Learning Blog