AI Agents on AWS
Strands SDK agents on Amazon Bedrock
🤖 Hello World Agent ⓘ
The simplest agent — no tools, so the agentic loop runs once. Ask
anything and Bedrock answers directly via POST /ask.
🧮 Math Assistant ⓘ
Uses the pre-built calculator tool from
strands_tools plus a system prompt. Try powers,
equations, or derivatives.
💰 Tip Calculator ⓘ
A tool-enabled agent. Phrase a tip question any way you like — it
routes to the same calculate_tip tool.
📦 Inventory Checker ⓘ
A custom tool backed by a mock database. Check stock for
PROD-123, PROD-456, or
PROD-789.
📊 Sales Report Agent ⓘ
Three single-purpose tools — query, analyse, email. You never tell it the order; the agent plans query → analyse → send itself.
🗄️ Inventory Manager ⓘ
Class-based tools sharing one data store. Updates persist across requests — update stock, then re-check and watch it stick.
⚡ Warehouse Check ⓘ
Async tools run lookups in parallel — three 2-second checks finish in ~2s, not 6s. Ask across east, west, and central.
✈️ Travel Assistant ⓘ
The capstone: a multi-tool agent that checks the weather, suggests a packing list, prices the trip, and tells you if it fits your budget. Try Goa, Bangalore, Jaipur, or Manali.