Skip to content

docs(multiagent): Update A2AServer docstrings #377

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 8, 2025
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