File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ dev = [
81
81
82
82
a2a = [
83
83
# go/keep-sorted start
84
- " a2a-sdk>=0.2.16,<0.3 .0;python_version>='3.10'" ,
84
+ " a2a-sdk>=0.3.0,<1.0 .0;python_version>='3.10'" ,
85
85
# go/keep-sorted end
86
86
]
87
87
Original file line number Diff line number Diff line change @@ -136,11 +136,11 @@ def build_a2a_request_log(req: SendMessageRequest) -> str:
136
136
config_log = "None"
137
137
if req .params .configuration :
138
138
config_data = {
139
- "acceptedOutputModes" : req .params .configuration .acceptedOutputModes ,
139
+ "acceptedOutputModes" : req .params .configuration .accepted_output_modes ,
140
140
"blocking" : req .params .configuration .blocking ,
141
- "historyLength" : req .params .configuration .historyLength ,
141
+ "historyLength" : req .params .configuration .history_length ,
142
142
"pushNotificationConfig" : bool (
143
- req .params .configuration .pushNotificationConfig
143
+ req .params .configuration .push_notification_config
144
144
),
145
145
}
146
146
config_log = json .dumps (config_data , indent = 2 )
Original file line number Diff line number Diff line change 26
26
27
27
try :
28
28
from a2a .client import A2AClient
29
- from a2a .client . client import A2ACardResolver
29
+ from a2a .client import A2ACardResolver
30
30
from a2a .types import AgentCard
31
31
from a2a .types import Message as A2AMessage
32
32
from a2a .types import MessageSendParams as A2AMessageSendParams
You can’t perform that action at this time.
0 commit comments