Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions 04-UX-demos/01-streamlit-template/docker_app/app_streaming.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,6 @@ def logout():
# Add user message to chat history
st.session_state.messages.append({"role": "user", "content": prompt})

# Clear previous tool usage details
if "details_placeholder" in st.session_state:
st.session_state.details_placeholder.empty()

# Display user message
with st.chat_message("user"):
st.write(prompt)
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,16 @@ venv\Scripts\activate
pip install strands-agents strands-agents-tools
```

**Alternative: Using [uv](https://docs.astral.sh/uv/) (faster)**
```bash
# Install uv if you don't have it
curl -LsSf https://astral.sh/uv/install.sh | sh

# Create venv and install in one step
uv venv && source .venv/bin/activate
uv pip install strands-agents strands-agents-tools
```

**Your First Agent:**
```python
from strands import Agent
Expand Down
Loading