-
Notifications
You must be signed in to change notification settings - Fork 429
Expand file tree
/
Copy pathrest.py
More file actions
409 lines (364 loc) · 12.7 KB
/
rest.py
File metadata and controls
409 lines (364 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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
import json
import logging
from collections.abc import AsyncGenerator
from typing import Any, NoReturn
import httpx
from google.protobuf.json_format import MessageToDict, Parse, ParseDict
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 A2A_REASON_TO_ERROR, MethodNotFoundError
from a2a.utils.telemetry import SpanKind, trace_class
logger = logging.getLogger(__name__)
def _parse_rest_error(
error_payload: dict[str, Any],
fallback_message: str,
) -> Exception | None:
"""Parses a REST error payload and returns the appropriate A2AError.
Args:
error_payload: The parsed JSON error payload.
fallback_message: Message to use if the payload has no ``message``.
Returns:
The mapped A2AError if a known reason was found, otherwise ``None``.
"""
error_data = error_payload.get('error', {})
message = error_data.get('message', fallback_message)
details = error_data.get('details', [])
if not isinstance(details, list):
return None
# The `details` array can contain multiple different error objects.
# We extract the first `ErrorInfo` object because it contains the
# specific `reason` code needed to map this back to a Python A2AError.
for d in details:
if (
isinstance(d, dict)
and d.get('@type') == 'type.googleapis.com/google.rpc.ErrorInfo'
):
reason = d.get('reason')
metadata = d.get('metadata') or {}
if isinstance(reason, str):
exception_cls = A2A_REASON_TO_ERROR.get(reason)
if exception_cls:
exc = exception_cls(message)
if metadata:
exc.data = metadata
return exc
break
return None
@trace_class(kind=SpanKind.CLIENT)
class RestTransport(ClientTransport):
"""A REST transport for the A2A client."""
def __init__(
self,
httpx_client: httpx.AsyncClient,
agent_card: AgentCard,
url: str,
):
"""Initializes the RestTransport."""
self.url = url.removesuffix('/')
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."""
response_data = await self._execute_request(
'POST',
'/message:send',
request.tenant,
context=context,
json=MessageToDict(request),
)
response: SendMessageResponse = ParseDict(
response_data, 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."""
payload = MessageToDict(request)
async for event in self._send_stream_request(
'POST',
'/message:stream',
request.tenant,
context=context,
json=payload,
):
yield event
async def get_task(
self,
request: GetTaskRequest,
*,
context: ClientCallContext | None = None,
) -> Task:
"""Retrieves the current state and history of a specific task."""
params = MessageToDict(request)
if 'id' in params:
del params['id'] # id is part of the URL path
if 'tenant' in params:
del params['tenant']
response_data = await self._execute_request(
'GET',
f'/tasks/{request.id}',
request.tenant,
context=context,
params=params,
)
response: Task = ParseDict(response_data, Task())
return response
async def list_tasks(
self,
request: ListTasksRequest,
*,
context: ClientCallContext | None = None,
) -> ListTasksResponse:
"""Retrieves tasks for an agent."""
params = MessageToDict(request)
if 'tenant' in params:
del params['tenant']
response_data = await self._execute_request(
'GET',
'/tasks',
request.tenant,
context=context,
params=params,
)
response: ListTasksResponse = ParseDict(
response_data, ListTasksResponse()
)
return response
async def cancel_task(
self,
request: CancelTaskRequest,
*,
context: ClientCallContext | None = None,
) -> Task:
"""Requests the agent to cancel a specific task."""
response_data = await self._execute_request(
'POST',
f'/tasks/{request.id}:cancel',
request.tenant,
context=context,
json=MessageToDict(request),
)
response: Task = ParseDict(response_data, 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."""
response_data = await self._execute_request(
'POST',
f'/tasks/{request.task_id}/pushNotificationConfigs',
request.tenant,
context=context,
json=MessageToDict(request),
)
response: TaskPushNotificationConfig = ParseDict(
response_data, 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."""
params = MessageToDict(request)
if 'id' in params:
del params['id']
if 'taskId' in params:
del params['taskId']
if 'tenant' in params:
del params['tenant']
response_data = await self._execute_request(
'GET',
f'/tasks/{request.task_id}/pushNotificationConfigs/{request.id}',
request.tenant,
context=context,
params=params,
)
response: TaskPushNotificationConfig = ParseDict(
response_data, 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."""
params = MessageToDict(request)
if 'taskId' in params:
del params['taskId']
if 'tenant' in params:
del params['tenant']
response_data = await self._execute_request(
'GET',
f'/tasks/{request.task_id}/pushNotificationConfigs',
request.tenant,
context=context,
params=params,
)
response: ListTaskPushNotificationConfigsResponse = ParseDict(
response_data, 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."""
params = MessageToDict(request)
if 'id' in params:
del params['id']
if 'taskId' in params:
del params['taskId']
if 'tenant' in params:
del params['tenant']
await self._execute_request(
'DELETE',
f'/tasks/{request.task_id}/pushNotificationConfigs/{request.id}',
request.tenant,
context=context,
params=params,
)
async def subscribe(
self,
request: SubscribeToTaskRequest,
*,
context: ClientCallContext | None = None,
) -> AsyncGenerator[StreamResponse]:
"""Reconnects to get task updates."""
async for event in self._send_stream_request(
'POST',
f'/tasks/{request.id}:subscribe',
request.tenant,
context=context,
):
yield event
async def get_extended_agent_card(
self,
request: GetExtendedAgentCardRequest,
*,
context: ClientCallContext | None = None,
) -> AgentCard:
"""Retrieves the Extended AgentCard."""
card = self.agent_card
if not card.capabilities.extended_agent_card:
return card
response_data = await self._execute_request(
'GET', '/extendedAgentCard', request.tenant, context=context
)
return ParseDict(response_data, AgentCard())
async def close(self) -> None:
"""Closes the httpx client."""
await self.httpx_client.aclose()
def _get_path(self, base_path: str, tenant: str) -> str:
"""Returns the full path, prepending the tenant if provided."""
return f'/{tenant}{base_path}' if tenant else base_path
def _handle_http_error(self, e: httpx.HTTPStatusError) -> NoReturn:
"""Handles HTTP status errors and raises the appropriate A2AError."""
try:
error_payload = e.response.json()
mapped = _parse_rest_error(error_payload, str(e))
if mapped:
raise mapped from e
except (json.JSONDecodeError, ValueError):
pass
status_code = e.response.status_code
if status_code == httpx.codes.NOT_FOUND:
raise MethodNotFoundError(
f'Resource not found: {e.request.url}'
) from e
raise A2AClientError(f'HTTP Error {status_code}: {e}') from e
def _handle_sse_error(self, sse_data: str) -> NoReturn:
"""Handles SSE error events by parsing the REST error payload and raising the appropriate A2AError."""
error_payload = json.loads(sse_data)
mapped = _parse_rest_error(error_payload, sse_data)
if mapped:
raise mapped
raise A2AClientError(sse_data)
async def _send_stream_request(
self,
method: str,
target: str,
tenant: str,
context: ClientCallContext | None = None,
*,
json: dict[str, Any] | None = None,
) -> AsyncGenerator[StreamResponse]:
path = self._get_path(target, tenant)
http_kwargs = get_http_args(context)
async for sse_data in send_http_stream_request(
self.httpx_client,
method,
f'{self.url}{path}',
self._handle_http_error,
self._handle_sse_error,
json=json,
**http_kwargs,
):
event: StreamResponse = Parse(sse_data, StreamResponse())
yield event
async def _send_request(self, request: httpx.Request) -> dict[str, Any]:
return await send_http_request(
self.httpx_client, request, self._handle_http_error
)
async def _execute_request( # noqa: PLR0913
self,
method: str,
target: str,
tenant: str,
context: ClientCallContext | None = None,
*,
json: dict[str, Any] | None = None,
params: dict[str, Any] | None = None,
) -> dict[str, Any]:
path = self._get_path(target, tenant)
http_kwargs = get_http_args(context)
request = self.httpx_client.build_request(
method,
f'{self.url}{path}',
json=json,
params=params,
**http_kwargs,
)
return await self._send_request(request)