Skip to content
Merged
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
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ writer = [

a2a = [
"a2a-sdk[sql]>=0.2.11,<1.0.0",
"uvicorn>=0.34.2",
"httpx>=0.28.1",
"fastapi>=0.115.12",
"starlette>=0.46.2",
"uvicorn>=0.34.2,<1.0.0",
"httpx>=0.28.1,<1.0.0",
"fastapi>=0.115.12,<1.0.0",
"starlette>=0.46.2,<1.0.0",
]
all = [
# anthropic
Expand Down Expand Up @@ -137,10 +137,10 @@ all = [

# a2a
"a2a-sdk[sql]>=0.2.11,<1.0.0",
"uvicorn>=0.34.2",
"httpx>=0.28.1",
"fastapi>=0.115.12",
"starlette>=0.46.2",
"uvicorn>=0.34.2,<1.0.0",
"httpx>=0.28.1,<1.0.0",
"fastapi>=0.115.12,<1.0.0",
"starlette>=0.46.2,<1.0.0",
]

[tool.hatch.version]
Expand Down
2 changes: 0 additions & 2 deletions src/strands/multiagent/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,10 @@
standardized communication between agents.
"""

from . import a2a
from .base import MultiAgentBase, MultiAgentResult
from .graph import GraphBuilder, GraphResult

__all__ = [
"a2a",
"GraphBuilder",
"GraphResult",
"MultiAgentBase",
Expand Down
3 changes: 2 additions & 1 deletion src/strands/multiagent/a2a/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
A2AAgent: A wrapper that adapts a Strands Agent to be A2A-compatible.
"""

from .executor import StrandsA2AExecutor
from .server import A2AServer

__all__ = ["A2AServer"]
__all__ = ["A2AServer", "StrandsA2AExecutor"]
Loading