@@ -239,7 +239,9 @@ class DeleteTaskPushNotificationConfigParams(A2ABaseModel):
239
239
Task id.
240
240
"""
241
241
metadata : dict [str , Any ] | None = None
242
- push_notification_config_id : str = Field (..., alias = 'pushNotificationConfigId' )
242
+ push_notification_config_id : str = Field (
243
+ ..., alias = 'pushNotificationConfigId'
244
+ )
243
245
244
246
245
247
class DeleteTaskPushNotificationConfigRequest (A2ABaseModel ):
@@ -968,7 +970,9 @@ class AgentCapabilities(A2ABaseModel):
968
970
"""
969
971
extensions supported by this agent.
970
972
"""
971
- push_notifications : bool | None = Field (default = None , alias = 'pushNotifications' )
973
+ push_notifications : bool | None = Field (
974
+ default = None , alias = 'pushNotifications'
975
+ )
972
976
"""
973
977
true if the agent can notify updates to client.
974
978
"""
@@ -1348,7 +1352,9 @@ class Message(A2ABaseModel):
1348
1352
"""
1349
1353
Message content
1350
1354
"""
1351
- reference_task_ids : list [str ] | None = Field (default = None , alias = 'referenceTaskIds' )
1355
+ reference_task_ids : list [str ] | None = Field (
1356
+ default = None , alias = 'referenceTaskIds'
1357
+ )
1352
1358
"""
1353
1359
List of tasks referenced as context by this message.
1354
1360
"""
@@ -1625,7 +1631,9 @@ class AgentCard(A2ABaseModel):
1625
1631
A human-readable description of the agent. Used to assist users and
1626
1632
other agents in understanding what the agent can do.
1627
1633
"""
1628
- documentation_url : str | None = Field (default = None , alias = 'documentationUrl' )
1634
+ documentation_url : str | None = Field (
1635
+ default = None , alias = 'documentationUrl'
1636
+ )
1629
1637
"""
1630
1638
A URL to documentation for the agent.
1631
1639
"""
@@ -1637,11 +1645,15 @@ class AgentCard(A2ABaseModel):
1637
1645
"""
1638
1646
Human readable name of the agent.
1639
1647
"""
1640
- preferred_transport : str | None = Field (default = None , alias = 'preferredTransport' )
1648
+ preferred_transport : str | None = Field (
1649
+ default = None , alias = 'preferredTransport'
1650
+ )
1641
1651
"""
1642
1652
The transport of the preferred endpoint. If empty, defaults to JSONRPC.
1643
1653
"""
1644
- protocol_version : str | None = Field (default = '0.2.5' , alias = 'protocolVersion' )
1654
+ protocol_version : str | None = Field (
1655
+ default = '0.2.5' , alias = 'protocolVersion'
1656
+ )
1645
1657
"""
1646
1658
The version of the A2A protocol this agent supports.
1647
1659
"""
0 commit comments