-
Notifications
You must be signed in to change notification settings - Fork 420
Expand file tree
/
Copy pathjsonrpc.py
More file actions
369 lines (337 loc) · 12.7 KB
/
jsonrpc.py
File metadata and controls
369 lines (337 loc) · 12.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
import logging
from collections.abc import AsyncGenerator
from typing import Any, NoReturn
from uuid import uuid4
import httpx
from google.protobuf import json_format
from jsonrpc.jsonrpc2 import JSONRPC20Request, JSONRPC20Response
from a2a.client.client import ClientCallContext
from a2a.client.errors import A2AClientError
from a2a.client.transports.base import ClientTransport
from a2a.client.transports.http_helpers import (
get_http_args,
send_http_request,
send_http_stream_request,
)
from a2a.types.a2a_pb2 import (
AgentCard,
CancelTaskRequest,
DeleteTaskPushNotificationConfigRequest,
GetExtendedAgentCardRequest,
GetTaskPushNotificationConfigRequest,
GetTaskRequest,
ListTaskPushNotificationConfigsRequest,
ListTaskPushNotificationConfigsResponse,
ListTasksRequest,
ListTasksResponse,
SendMessageRequest,
SendMessageResponse,
StreamResponse,
SubscribeToTaskRequest,
Task,
TaskPushNotificationConfig,
)
from a2a.utils.errors import JSON_RPC_ERROR_CODE_MAP
from a2a.utils.telemetry import SpanKind, trace_class
logger = logging.getLogger(__name__)
_JSON_RPC_ERROR_CODE_TO_A2A_ERROR = {
code: error_type for error_type, code in JSON_RPC_ERROR_CODE_MAP.items()
}
@trace_class(kind=SpanKind.CLIENT)
class JsonRpcTransport(ClientTransport):
"""A JSON-RPC transport for the A2A client."""
def __init__(
self,
httpx_client: httpx.AsyncClient,
agent_card: AgentCard,
url: str,
):
"""Initializes the JsonRpcTransport."""
self.url = url
self.httpx_client = httpx_client
self.agent_card = agent_card
async def send_message(
self,
request: SendMessageRequest,
*,
context: ClientCallContext | None = None,
) -> SendMessageResponse:
"""Sends a non-streaming message request to the agent."""
rpc_request = JSONRPC20Request(
method='SendMessage',
params=json_format.MessageToDict(request),
_id=str(uuid4()),
)
response_data = await self._send_request(
dict(rpc_request.data), context
)
json_rpc_response = JSONRPC20Response(**response_data)
if json_rpc_response.error:
raise self._create_jsonrpc_error(json_rpc_response.error)
response: SendMessageResponse = json_format.ParseDict(
json_rpc_response.result, SendMessageResponse()
)
return response
async def send_message_streaming(
self,
request: SendMessageRequest,
*,
context: ClientCallContext | None = None,
) -> AsyncGenerator[StreamResponse]:
"""Sends a streaming message request to the agent and yields responses as they arrive."""
rpc_request = JSONRPC20Request(
method='SendStreamingMessage',
params=json_format.MessageToDict(request),
_id=str(uuid4()),
)
async for event in self._send_stream_request(
dict(rpc_request.data),
context,
):
yield event
async def get_task(
self,
request: GetTaskRequest,
*,
context: ClientCallContext | None = None,
) -> Task:
"""Retrieves the current state and history of a specific task."""
rpc_request = JSONRPC20Request(
method='GetTask',
params=json_format.MessageToDict(request),
_id=str(uuid4()),
)
response_data = await self._send_request(
dict(rpc_request.data), context
)
json_rpc_response = JSONRPC20Response(**response_data)
if json_rpc_response.error:
raise self._create_jsonrpc_error(json_rpc_response.error)
response: Task = json_format.ParseDict(json_rpc_response.result, Task())
return response
async def list_tasks(
self,
request: ListTasksRequest,
*,
context: ClientCallContext | None = None,
) -> ListTasksResponse:
"""Retrieves tasks for an agent."""
rpc_request = JSONRPC20Request(
method='ListTasks',
params=json_format.MessageToDict(request),
_id=str(uuid4()),
)
response_data = await self._send_request(
dict(rpc_request.data), context
)
json_rpc_response = JSONRPC20Response(**response_data)
if json_rpc_response.error:
raise self._create_jsonrpc_error(json_rpc_response.error)
response: ListTasksResponse = json_format.ParseDict(
json_rpc_response.result, ListTasksResponse()
)
return response
async def cancel_task(
self,
request: CancelTaskRequest,
*,
context: ClientCallContext | None = None,
) -> Task:
"""Requests the agent to cancel a specific task."""
rpc_request = JSONRPC20Request(
method='CancelTask',
params=json_format.MessageToDict(request),
_id=str(uuid4()),
)
response_data = await self._send_request(
dict(rpc_request.data), context
)
json_rpc_response = JSONRPC20Response(**response_data)
if json_rpc_response.error:
raise self._create_jsonrpc_error(json_rpc_response.error)
response: Task = json_format.ParseDict(json_rpc_response.result, Task())
return response
async def create_task_push_notification_config(
self,
request: TaskPushNotificationConfig,
*,
context: ClientCallContext | None = None,
) -> TaskPushNotificationConfig:
"""Sets or updates the push notification configuration for a specific task."""
rpc_request = JSONRPC20Request(
method='CreateTaskPushNotificationConfig',
params=json_format.MessageToDict(request),
_id=str(uuid4()),
)
response_data = await self._send_request(
dict(rpc_request.data), context
)
json_rpc_response = JSONRPC20Response(**response_data)
if json_rpc_response.error:
raise self._create_jsonrpc_error(json_rpc_response.error)
response: TaskPushNotificationConfig = json_format.ParseDict(
json_rpc_response.result, TaskPushNotificationConfig()
)
return response
async def get_task_push_notification_config(
self,
request: GetTaskPushNotificationConfigRequest,
*,
context: ClientCallContext | None = None,
) -> TaskPushNotificationConfig:
"""Retrieves the push notification configuration for a specific task."""
rpc_request = JSONRPC20Request(
method='GetTaskPushNotificationConfig',
params=json_format.MessageToDict(request),
_id=str(uuid4()),
)
response_data = await self._send_request(
dict(rpc_request.data), context
)
json_rpc_response = JSONRPC20Response(**response_data)
if json_rpc_response.error:
raise self._create_jsonrpc_error(json_rpc_response.error)
response: TaskPushNotificationConfig = json_format.ParseDict(
json_rpc_response.result, TaskPushNotificationConfig()
)
return response
async def list_task_push_notification_configs(
self,
request: ListTaskPushNotificationConfigsRequest,
*,
context: ClientCallContext | None = None,
) -> ListTaskPushNotificationConfigsResponse:
"""Lists push notification configurations for a specific task."""
rpc_request = JSONRPC20Request(
method='ListTaskPushNotificationConfigs',
params=json_format.MessageToDict(request),
_id=str(uuid4()),
)
response_data = await self._send_request(
dict(rpc_request.data), context
)
json_rpc_response = JSONRPC20Response(**response_data)
if json_rpc_response.error:
raise self._create_jsonrpc_error(json_rpc_response.error)
response: ListTaskPushNotificationConfigsResponse = (
json_format.ParseDict(
json_rpc_response.result,
ListTaskPushNotificationConfigsResponse(),
)
)
return response
async def delete_task_push_notification_config(
self,
request: DeleteTaskPushNotificationConfigRequest,
*,
context: ClientCallContext | None = None,
) -> None:
"""Deletes the push notification configuration for a specific task."""
rpc_request = JSONRPC20Request(
method='DeleteTaskPushNotificationConfig',
params=json_format.MessageToDict(request),
_id=str(uuid4()),
)
response_data = await self._send_request(
dict(rpc_request.data), context
)
json_rpc_response = JSONRPC20Response(**response_data)
if json_rpc_response.error:
raise self._create_jsonrpc_error(json_rpc_response.error)
async def subscribe(
self,
request: SubscribeToTaskRequest,
*,
context: ClientCallContext | None = None,
) -> AsyncGenerator[StreamResponse]:
"""Reconnects to get task updates."""
rpc_request = JSONRPC20Request(
method='SubscribeToTask',
params=json_format.MessageToDict(request),
_id=str(uuid4()),
)
async for event in self._send_stream_request(
dict(rpc_request.data),
context,
):
yield event
async def get_extended_agent_card(
self,
request: GetExtendedAgentCardRequest,
*,
context: ClientCallContext | None = None,
) -> AgentCard:
"""Retrieves the agent's card."""
card = self.agent_card
if not card.capabilities.extended_agent_card:
return card
rpc_request = JSONRPC20Request(
method='GetExtendedAgentCard',
params=json_format.MessageToDict(request),
_id=str(uuid4()),
)
response_data = await self._send_request(
dict(rpc_request.data),
context,
)
json_rpc_response = JSONRPC20Response(**response_data)
if json_rpc_response.error:
raise self._create_jsonrpc_error(json_rpc_response.error)
# Validate type of the response
if not isinstance(json_rpc_response.result, dict):
raise A2AClientError(
f'Invalid response type: {type(json_rpc_response.result)}'
)
response: AgentCard = json_format.ParseDict(
json_rpc_response.result, AgentCard()
)
return response
async def close(self) -> None:
"""Closes the httpx client."""
await self.httpx_client.aclose()
def _create_jsonrpc_error(self, error_dict: dict[str, Any]) -> Exception:
"""Creates the appropriate A2AError from a JSON-RPC error dictionary."""
code = error_dict.get('code')
message = error_dict.get('message', str(error_dict))
if isinstance(code, int) and code in _JSON_RPC_ERROR_CODE_TO_A2A_ERROR:
return _JSON_RPC_ERROR_CODE_TO_A2A_ERROR[code](message)
# Fallback to general A2AClientError
return A2AClientError(f'JSON-RPC Error {code}: {message}')
async def _send_request(
self,
payload: dict[str, Any],
context: ClientCallContext | None = None,
) -> dict[str, Any]:
http_kwargs = get_http_args(context)
request = self.httpx_client.build_request(
'POST', self.url, json=payload, **(http_kwargs or {})
)
return await send_http_request(self.httpx_client, request)
async def _send_stream_request(
self,
rpc_request_payload: dict[str, Any],
context: ClientCallContext | None = None,
) -> AsyncGenerator[StreamResponse]:
http_kwargs = get_http_args(context)
async for sse_data in send_http_stream_request(
self.httpx_client,
'POST',
self.url,
None,
self._handle_sse_error,
json=rpc_request_payload,
**http_kwargs,
):
json_rpc_response = JSONRPC20Response.from_json(sse_data)
if json_rpc_response.error:
raise self._create_jsonrpc_error(json_rpc_response.error)
response: StreamResponse = json_format.ParseDict(
json_rpc_response.result, StreamResponse()
)
yield response
def _handle_sse_error(self, sse_data: str) -> NoReturn:
"""Handles SSE error events by parsing JSON-RPC error payload and raising the appropriate domain error."""
json_rpc_response = JSONRPC20Response.from_json(sse_data)
if json_rpc_response.error:
raise self._create_jsonrpc_error(json_rpc_response.error)
raise A2AClientError(f'SSE stream error: {sse_data}')