Skip to content
Merged
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: 1 addition & 3 deletions src/strands/multiagent/a2a/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,10 @@ def __init__(
version: str = "0.0.1",
skills: list[AgentSkill] | None = None,
):
"""Initialize an A2A-compatible agent from a Strands agent.
"""Initialize an A2A-compatible server from a Strands agent.

Args:
agent: The Strands Agent to wrap with A2A compatibility.
name: The name of the agent, used in the AgentCard.
description: A description of the agent's capabilities, used in the AgentCard.
host: The hostname or IP address to bind the A2A server to. Defaults to "0.0.0.0".
port: The port to bind the A2A server to. Defaults to 9000.
version: The version of the agent. Defaults to "0.0.1".
Expand Down
Loading