What happened?

In a technical blog post dated August 14, 2026, Amazon Web Services (AWS) introduced a multi-agent architecture that combines Amazon Bedrock AgentCore with Amazon SageMaker AI. The approach aims to let developers use managed foundation models alongside their own cost-optimized or domain-specific models without rewriting the agent framework.

In the sample architecture, three different model-hosting paths were unified within a single Bedrock AgentCore container. The orchestrator agent uses Claude Haiku 4.5, the budget agent uses Claude Sonnet 4.6 via Bedrock, while the financial analysis agent calls a Qwen 3.5 9B model deployed with vLLM on SageMaker AI through an OpenAI-compatible API.

Why does it matter?

Enterprise developers often have to balance cost optimization, data residency, and model flexibility requirements. The architecture AWS demonstrated aims to meet all three requirements within a single production pipeline by combining different models for different workloads.

The blog post also highlights an important technical gap: while the Bedrock AgentCore runtime automatically traces agents with OpenTelemetry, this tracing only covers Bedrock model calls. Token usage for OpenAI-compatible endpoints on SageMaker is not visible by default, making cost tracking and latency debugging harder. AWS addresses this by suggesting a solution that creates a custom gen_ai.chat span and manually extracts token usage from Strands Agents' internal metrics.

Models used in the architecture

AgentModelHostingTask
OrchestratorClaude Haiku 4.5Amazon BedrockClassifying and routing user intent
Budget agentClaude Sonnet 4.6Amazon Bedrock50/30/20 budget allocation, structured output
Financial analysis agentQwen 3.5 9BAmazon SageMaker AI (vLLM, ml.g6e.2xlarge)Stock analysis and portfolio construction

What's known

  • Qwen 3.5 9B was deployed on a single ml.g6e.2xlarge instance with an L40S GPU using a Deep Learning Container with vLLM 0.22.1.
  • The system uses the 'agents as tools' pattern from the Strands Agents library.
  • Deployment was carried out in the ap-south-1 region via the bedrock-agentcore-starter-toolkit.
  • The full source code was shared in AWS's associated GitHub repository.

What's next?

AWS states in the blog post that this architecture is presented as a reference implementation, showing how developers can bring their own mix of models to production using a similar setup. The company also notes that Bedrock model availability varies by region and advises developers to check supported models in AWS documentation.