You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve README Getting Started section with clearer setup instructions (#172)
- Add Python 3.10+ prerequisite with pip installation guidance
- Include virtual environment setup step for dependency isolation
- Clarify package installation with separate core packages and example-specific dependencies
- Add comprehensive repository structure overview in Step 6
- Update table of contents to reflect new structure
# Install Strands core packages (required for all examples)
54
87
pip install strands-agents
55
88
pip install strands-agents-tools
56
89
```
57
90
58
-
### Step 2: Setup Model Provider
91
+
>**Additional Dependencies:** Individual examples throughout this repository may require extra packages. When working with a specific example, check for its `requirements.txt` file:
92
+
>```bash
93
+
># Navigate to the example folder you want to run
94
+
> cd [example-directory]
95
+
>
96
+
> # Install dependencies if requirements.txt exists
97
+
> pip install -r requirements.txt
98
+
> ```
99
+
100
+
### Step 3: Setup Model Provider
59
101
60
102
Follow the instructions [here](https://strandsagents.com/latest/user-guide/quickstart/#model-providers) to configure your model provider and model access.
61
103
62
-
### Step 3: Build Your First Strands Agent
104
+
### Step 4: Build Your First Strands Agent
63
105
64
106
```python
65
107
from strands import Agent, tool
@@ -91,15 +133,20 @@ I have 4 requests:
91
133
agent(message)
92
134
```
93
135
94
-
### Step 4: Getting Started with the SDK
136
+
### Step 5: Getting Started with the SDK
95
137
96
138
Start with the [01-tutorials](./01-tutorials/) directory.
97
139
Create your [first agent](./01-tutorials/01-fundamentals/01-first-agent/) and explore notebook-based examples covering core functionalities.
98
140
99
-
### Step 5: Explore More Samples
141
+
### Step 6: Explore the Repository
142
+
143
+
This repository is organized to help you progress from basics to advanced implementations:
100
144
101
-
Looking for inspiration?
102
-
Check out more examples in the [02-samples](./02-samples/) folder for real-world use cases.
145
+
- **[01-tutorials](./01-tutorials/)** - Step-by-step guides covering fundamentals, deployment, and best practices
146
+
- **[02-samples](./02-samples/)** - Real-world use cases and industry-specific examples
147
+
- **[03-integrations](./03-integrations/)** - Integration examples with AWS services and third-party tools
148
+
- **[04-UX-demos](./04-UX-demos/)** - Full-stack applications with user interfaces
0 commit comments