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
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ dist/
downloads/
eggs/
.eggs/
**/**/*.egg-info/
lib/
lib64/
parts/
Expand All @@ -26,6 +27,11 @@ share/python-wheels/
.installed.cfg
*.egg
MANIFEST
**/**/__pycache__/
**/**/.mypy_cache/
**/**/.pytest_cache/
**/**/.ruff_cache/
**/**/.venv/

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
5 changes: 2 additions & 3 deletions ext/dapr-ext-strands/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ The Strands extension provides distributed session management for [Strands Agent

```
ext/dapr-ext-strands/
├── pyproject.toml # Deps: dapr, strands-agents, strands-agents-tools, python-ulid, msgpack-python
├── setup.py
├── pyproject.toml # Deps: dapr, strands-agents, python-ulid, msgpack-python
├── tests/
Comment thread
sicoyle marked this conversation as resolved.

│ └── test_session_manager.py # Unit tests with mocked DaprClient
└── dapr/ext/strands/
├── __init__.py # Exports: DaprSessionManager
Expand Down Expand Up @@ -80,7 +80,6 @@ manager = DaprSessionManager.from_address(

- `dapr >= 1.17.0.dev`
- `strands-agents` — Strands agents framework
- `strands-agents-tools` — Strands agent tools
- `python-ulid >= 3.0.0`
- `msgpack-python >= 0.4.5`
Comment thread
sicoyle marked this conversation as resolved.

Expand Down
Loading