diff --git a/.gitignore b/.gitignore index 5dadf6d5..9c5befa4 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ dist/ downloads/ eggs/ .eggs/ +**/**/*.egg-info/ lib/ lib64/ parts/ @@ -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 diff --git a/ext/dapr-ext-strands/AGENTS.md b/ext/dapr-ext-strands/AGENTS.md index dc3d37ad..59799d3f 100644 --- a/ext/dapr-ext-strands/AGENTS.md +++ b/ext/dapr-ext-strands/AGENTS.md @@ -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/ + │ └── test_session_manager.py # Unit tests with mocked DaprClient └── dapr/ext/strands/ ├── __init__.py # Exports: DaprSessionManager @@ -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`