Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 440 Bytes

File metadata and controls

19 lines (13 loc) · 440 Bytes

Step 0 - Hello Agent

The simplest Strands agent possible.

Run

pip install -r requirements.txt
python agent.py "hello, what can you do?"

What to notice

  • One import: from strands import Agent
  • One model: Claude Opus 4 (global.anthropic.claude-opus-4-8) via Bedrock
  • One tool: shell from strands_tools
  • Zero orchestration: the agent decides when to call the tool

Next → step-01-tools.