{"id":24660,"library":"strands-agents-builder","title":"Strands Agents Builder","description":"An example Strands agent demonstrating streaming, tool use, and interactivity from your terminal. This agent builder helps you build your own agents and tools. Current version: 0.1.10, release cadence: early development, updates as needed.","status":"active","version":"0.1.10","language":"python","source_language":"en","source_url":"https://github.com/strands-agents/agent-builder","tags":["agent","streaming","tools","interactive"],"install":[{"cmd":"pip install strands-agents-builder","lang":"bash","label":"Default install"}],"dependencies":[],"imports":[{"note":"Common mistake: misspelling package name (strands-agents-builder) or using incorrect submodule paths.","wrong":"","symbol":"StrandsAgent","correct":"from strands_agents_builder import StrandsAgent"}],"quickstart":{"code":"from strands_agents_builder import StrandsAgent\n\n# Initialize with API key from environment or string\napi_key = os.environ.get('STRANDS_API_KEY', 'your-api-key')\nagent = StrandsAgent(api_key=api_key, model=\"gpt-4\")\n\nresponse = agent.run(\"What is the weather today?\")\nprint(response)\n","lang":"python","description":"Basic usage: create an agent and run a query. Requires API key and Python 3.10+."},"warnings":[{"fix":"Use `pip install strands-agents-builder` and `import strands_agents_builder`.","message":"Package name uses hyphens (strands-agents-builder) but import uses underscores (strands_agents_builder). Common pip install vs import mismatch.","severity":"gotcha","affected_versions":"all"},{"fix":"Pin to exact version: `strands-agents-builder==0.1.10`","message":"Version 0.1.x is in early development; API may change without notice. Pin your version in requirements.","severity":"gotcha","affected_versions":"<0.2.0"}],"env_vars":null,"last_verified":"2026-05-01T00:00:00.000Z","next_check":"2026-07-30T00:00:00.000Z","problems":[{"fix":"Use `import strands_agents_builder` (underscores) instead of `import strands-agents-builder`.","cause":"Using hyphens in import statement instead of underscores.","error":"ModuleNotFoundError: No module named 'strands-agents-builder'"},{"fix":"Verify that 'StrandsAgent' is the correct class name. Consult the library's source or issues.","cause":"The class might be renamed or not imported correctly; check documentation for exact class name.","error":"AttributeError: module 'strands_agents_builder' has no attribute 'StrandsAgent'"}],"ecosystem":"pypi","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}