惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
I
InfoQ
B
Blog RSS Feed
D
Docker
GbyAI
GbyAI
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
F
Fortinet All Blogs
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
M
MIT News - Artificial intelligence
C
Check Point Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
博客园 - Franky
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Last Week in AI
Last Week in AI
L
LangChain Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building My First AI Agent with Strands SDK and Amazon Be...
Tidding Rams · 2026-05-10 · via DEV Community

Introduction

I recently attended an AWS event where we built our first AI agent using the Strands Agents SDK and Amazon Bedrock. The quickstart guide looked simple enough — a few lines of Python, some tools, and a running agent. But the real learning happened in the errors. This article walks you through what I built, every error I hit, and exactly how I fixed them.

What We Built

A simple AI agent that can:

  • Tell you the current time
  • Perform calculations
  • Count letters in a word

Three tools. One agent. Sounds easy. It wasn't — but that's what made it worth writing about.

Project Structure

Here's the folder structure I used:

Agent/
├── .venv/
├── agent.py
└── requirements.txt

Enter fullscreen mode Exit fullscreen mode

Setting Up the Environment

First, create and activate a virtual environment:

python -m venv .venv
.venv\Scripts\Activate.ps1   # Windows PowerShell

Enter fullscreen mode Exit fullscreen mode

Then install the required packages:

pip install strands-agents strands-agents-tools

Enter fullscreen mode Exit fullscreen mode

The Agent Code (Starting Point)

The quickstart gave us this agent.py:

from strands import Agent, tool
from strands_tools import calculator, current_time

@tool
def letter_counter(word: str, letter: str) -> int:
    """
    Count occurrences of a specific letter in a word.

    Args:
        word (str): The input word to search in
        letter (str): The specific letter to count

    Returns:
        int: The number of occurrences of the letter in the word
    """
    if not isinstance(word, str) or not isinstance(letter, str):
        return 0
    if len(letter) != 1:
        raise ValueError("The 'letter' parameter must be a single character")
    return word.lower().count(letter.lower())

agent = Agent(tools=[calculator, current_time, letter_counter])

message = """
I have 3 requests:
1. What is the time right now?
2. Calculate 3111696 / 74088
3. Tell me how many letter R's are in the word "strawberry" 🍓
"""

agent(message)

Enter fullscreen mode Exit fullscreen mode

Simple and clean. Then I ran it. And the errors began.


Error 1: Anthropic Use Case Form Not Submitted

botocore.errorfactory.ResourceNotFoundException: 
Model use case details have not been submitted for this account.
Fill out the Anthropic use case details form before using the model.
└ Model id: global.anthropic.claude-sonnet-4-6

Enter fullscreen mode Exit fullscreen mode

What happened: The Strands SDK defaults to Amazon Bedrock with Claude Sonnet 4. But Anthropic requires first-time users to submit a use case form before accessing their models on Bedrock.

How I fixed it:

  1. Went to the AWS Bedrock Console in us-east-1
  2. Navigated to Model Catalog and searched for Claude Sonnet 4.6
  3. Clicked the model and hit "Submit use case details"
  4. Filled out the form:
    • Company name, website, industry
    • Intended users: Internal
    • Use case: "Building an AI agent for learning and demonstration purposes at an AWS event using the Strands SDK and Amazon Bedrock"
  5. Submitted and waited ~15 minutes

Once the "Submit use case details" button disappeared and "Open in playground" appeared, I knew it was approved.


Error 2: Missing Dependency for AWS Login

botocore.exceptions.MissingDependencyException: 
Using the login credential provider requires an additional dependency.
You will need to pip install "botocore[crt]" before proceeding.

Enter fullscreen mode Exit fullscreen mode

What happened: The AWS credential provider I was using needed an extra C extension package called awscrt.

How I fixed it:

pip install "botocore[crt]"

Enter fullscreen mode Exit fullscreen mode

That installed awscrt-0.32.2 and resolved the issue immediately.


Error 3: Wrong Model ID — ValidationException

botocore.errorfactory.ValidationException: 
The provided model identifier is invalid.
└ Model id: us.anthropic.claude-sonnet-4-6-20251031-v1:0

Enter fullscreen mode Exit fullscreen mode

What happened: I had added a BedrockModel to my code with a guessed model ID, but it wasn't valid for my account.

How I fixed it: I ran this command to list all valid inference profile IDs available to my account:

aws bedrock list-inference-profiles --region us-east-1 --profile tidding --query "inferenceProfileSummaries[?contains(inferenceProfileId, 'anthropic')].inferenceProfileId"

Enter fullscreen mode Exit fullscreen mode

It returned a list including:

"us.anthropic.claude-sonnet-4-6"

Enter fullscreen mode Exit fullscreen mode

That was the correct ID. No version suffix needed.


The Final Working Code

After all the fixes, here is the final agent.py:

from strands import Agent, tool
from strands.models import BedrockModel
from strands_tools import calculator, current_time

# Define a custom tool using the @tool decorator
@tool
def letter_counter(word: str, letter: str) -> int:
    """
    Count occurrences of a specific letter in a word.

    Args:
        word (str): The input word to search in
        letter (str): The specific letter to count

    Returns:
        int: The number of occurrences of the letter in the word
    """
    if not isinstance(word, str) or not isinstance(letter, str):
        return 0
    if len(letter) != 1:
        raise ValueError("The 'letter' parameter must be a single character")
    return word.lower().count(letter.lower())

# Specify the Bedrock model explicitly using the correct inference profile ID
model = BedrockModel(
    model_id="us.anthropic.claude-sonnet-4-6",
    region_name="us-east-1"
)

# Create the agent with tools
agent = Agent(model=model, tools=[calculator, current_time, letter_counter])

# Ask the agent to handle multiple tasks
message = """
I have 3 requests:
1. What is the time right now?
2. Calculate 3111696 / 74088
3. Tell me how many letter R's are in the word "strawberry" 🍓
"""

agent(message)

Enter fullscreen mode Exit fullscreen mode

Run it with:

$env:AWS_PROFILE = "tidding"
python agent.py

Enter fullscreen mode Exit fullscreen mode

Key Lessons Learned

1. Always submit the Anthropic use case form first. It's a one-time requirement per AWS account and blocks everything until done.

2. Don't guess model IDs. Use aws bedrock list-inference-profiles to get the exact valid ID for your account.

3. The default Strands model ID may not match what your account supports. Always specify the model explicitly using BedrockModel.

4. botocore[crt] is required when using the AWS login credential provider on Windows. Install it early.

5. Set your AWS profile before running the agent:

$env:AWS_PROFILE = "yourprofile"

Enter fullscreen mode Exit fullscreen mode

What the Agent Loop Looks Like

Once running, the Strands agent follows this loop:

Input → Reasoning (LLM) → Tool Selection → Tool Execution → Back to Reasoning → Response

Enter fullscreen mode Exit fullscreen mode

The agent automatically decides which tools to use based on your message. For our three requests, it fired current_time, calculator, and letter_counter — all in one go.

Conclusion

The Strands SDK makes building AI agents genuinely simple — once you get past the AWS setup hurdles. The errors I faced were all configuration-related, not code-related. Once the environment was right, the agent worked beautifully in just a few lines of Python.

If you're attending an AWS event and hitting these same errors, I hope this saves you time. Drop a comment if you're stuck — happy to help!

Built at an AWS Event · Strands Agents SDK · Amazon Bedrock · Claude Sonnet 4.6