chore: update docs to reflect correct kwarg

This commit is contained in:
Greyson Lalonde
2026-03-26 13:09:04 +08:00
parent 75ea710ad2
commit 65a6d91204

View File

@@ -38,7 +38,7 @@ agent = Agent(
llm="gpt-4o",
a2a=A2AServerConfig(
url="https://your-server.com",
extensions=[A2UIServerExtension()],
server_extensions=[A2UIServerExtension()],
),
)
```
@@ -69,7 +69,7 @@ agent = Agent(
llm="gpt-4o",
a2a=A2AClientConfig(
endpoint="https://dashboard-agent.example.com/.well-known/agent-card.json",
extensions=[A2UIClientExtension()],
client_extensions=[A2UIClientExtension()],
),
)
```