-
Notifications
You must be signed in to change notification settings - Fork 429
Expand file tree
/
Copy pathgrpc.py
More file actions
343 lines (297 loc) · 10.1 KB
/
grpc.py
File metadata and controls
343 lines (297 loc) · 10.1 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
import logging
from collections.abc import AsyncGenerator, Callable
from functools import wraps
from typing import Any, NoReturn, cast
from a2a.client.errors import A2AClientError, A2AClientTimeoutError
from a2a.client.middleware import ClientCallContext
try:
import grpc # type: ignore[reportMissingModuleSource]
from grpc_status import rpc_status
except ImportError as e:
raise ImportError(
'A2AGrpcClient requires grpcio, grpcio-tools, and grpcio-status to be installed. '
'Install with: '
"'pip install a2a-sdk[grpc]'"
) from e
from google.rpc import ( # type: ignore[reportMissingModuleSource]
error_details_pb2,
)
from a2a.client.client import ClientConfig
from a2a.client.middleware import ClientCallInterceptor
from a2a.client.optionals import Channel
from a2a.client.transports.base import ClientTransport
from a2a.types import a2a_pb2_grpc
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.constants import PROTOCOL_VERSION_CURRENT, VERSION_HEADER
from a2a.utils.errors import A2A_REASON_TO_ERROR
from a2a.utils.telemetry import SpanKind, trace_class
logger = logging.getLogger(__name__)
def _map_grpc_error(e: grpc.aio.AioRpcError) -> NoReturn:
if e.code() == grpc.StatusCode.DEADLINE_EXCEEDED:
raise A2AClientTimeoutError('Client Request timed out') from e
# Use grpc_status to cleanly extract the rich Status from the call
status = rpc_status.from_call(cast('grpc.Call', e))
if status is not None:
for detail in status.details:
if detail.Is(error_details_pb2.ErrorInfo.DESCRIPTOR):
error_info = error_details_pb2.ErrorInfo()
detail.Unpack(error_info)
if error_info.domain == 'a2a-protocol.org':
exception_cls = A2A_REASON_TO_ERROR.get(error_info.reason)
if exception_cls:
raise exception_cls(status.message) from e
raise A2AClientError(f'gRPC Error {e.code().name}: {e.details()}') from e
def _handle_grpc_exception(func: Callable[..., Any]) -> Callable[..., Any]:
@wraps(func)
async def wrapper(*args: Any, **kwargs: Any) -> Any:
try:
return await func(*args, **kwargs)
except grpc.aio.AioRpcError as e:
_map_grpc_error(e)
return wrapper
def _handle_grpc_stream_exception(
func: Callable[..., Any],
) -> Callable[..., Any]:
@wraps(func)
async def wrapper(*args: Any, **kwargs: Any) -> Any:
try:
async for item in func(*args, **kwargs):
yield item
except grpc.aio.AioRpcError as e:
_map_grpc_error(e)
return wrapper
@trace_class(kind=SpanKind.CLIENT)
class GrpcTransport(ClientTransport):
"""A gRPC transport for the A2A client."""
def __init__(
self,
channel: Channel,
agent_card: AgentCard | None,
):
"""Initializes the GrpcTransport."""
self.agent_card = agent_card
self.channel = channel
self.stub = a2a_pb2_grpc.A2AServiceStub(channel)
@classmethod
def create(
cls,
card: AgentCard,
url: str,
config: ClientConfig,
interceptors: list[ClientCallInterceptor],
) -> 'GrpcTransport':
"""Creates a gRPC transport for the A2A client."""
if config.grpc_channel_factory is None:
raise ValueError('grpc_channel_factory is required when using gRPC')
return cls(config.grpc_channel_factory(url), card)
@_handle_grpc_exception
async def send_message(
self,
request: SendMessageRequest,
*,
context: ClientCallContext | None = None,
) -> SendMessageResponse:
"""Sends a non-streaming message request to the agent."""
return await self._call_grpc(
self.stub.SendMessage,
request,
context,
)
@_handle_grpc_stream_exception
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."""
async for response in self._call_grpc_stream(
self.stub.SendStreamingMessage,
request,
context,
):
yield response
@_handle_grpc_stream_exception
async def subscribe(
self,
request: SubscribeToTaskRequest,
*,
context: ClientCallContext | None = None,
) -> AsyncGenerator[StreamResponse]:
"""Reconnects to get task updates."""
async for response in self._call_grpc_stream(
self.stub.SubscribeToTask,
request,
context,
):
yield response
@_handle_grpc_exception
async def get_task(
self,
request: GetTaskRequest,
*,
context: ClientCallContext | None = None,
) -> Task:
"""Retrieves the current state and history of a specific task."""
return await self._call_grpc(
self.stub.GetTask,
request,
context,
)
@_handle_grpc_exception
async def list_tasks(
self,
request: ListTasksRequest,
*,
context: ClientCallContext | None = None,
) -> ListTasksResponse:
"""Retrieves tasks for an agent."""
return await self._call_grpc(
self.stub.ListTasks,
request,
context,
)
@_handle_grpc_exception
async def cancel_task(
self,
request: CancelTaskRequest,
*,
context: ClientCallContext | None = None,
) -> Task:
"""Requests the agent to cancel a specific task."""
return await self._call_grpc(
self.stub.CancelTask,
request,
context,
)
@_handle_grpc_exception
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."""
return await self._call_grpc(
self.stub.CreateTaskPushNotificationConfig,
request,
context,
)
@_handle_grpc_exception
async def get_task_push_notification_config(
self,
request: GetTaskPushNotificationConfigRequest,
*,
context: ClientCallContext | None = None,
) -> TaskPushNotificationConfig:
"""Retrieves the push notification configuration for a specific task."""
return await self._call_grpc(
self.stub.GetTaskPushNotificationConfig,
request,
context,
)
@_handle_grpc_exception
async def list_task_push_notification_configs(
self,
request: ListTaskPushNotificationConfigsRequest,
*,
context: ClientCallContext | None = None,
) -> ListTaskPushNotificationConfigsResponse:
"""Lists push notification configurations for a specific task."""
return await self._call_grpc(
self.stub.ListTaskPushNotificationConfigs,
request,
context,
)
@_handle_grpc_exception
async def delete_task_push_notification_config(
self,
request: DeleteTaskPushNotificationConfigRequest,
*,
context: ClientCallContext | None = None,
) -> None:
"""Deletes the push notification configuration for a specific task."""
await self._call_grpc(
self.stub.DeleteTaskPushNotificationConfig,
request,
context,
)
@_handle_grpc_exception
async def get_extended_agent_card(
self,
request: GetExtendedAgentCardRequest,
*,
context: ClientCallContext | None = None,
) -> AgentCard:
"""Retrieves the agent's card."""
card = self.agent_card
if card and not card.capabilities.extended_agent_card:
return card
return await self._call_grpc(
self.stub.GetExtendedAgentCard,
request,
context,
)
async def close(self) -> None:
"""Closes the gRPC channel."""
await self.channel.close()
def _get_grpc_metadata(
self, context: ClientCallContext | None
) -> list[tuple[str, str]]:
metadata = [(VERSION_HEADER.lower(), PROTOCOL_VERSION_CURRENT)]
if context and context.service_parameters:
for key, value in context.service_parameters.items():
metadata.append((key.lower(), value))
return metadata
def _get_grpc_timeout(
self, context: ClientCallContext | None
) -> float | None:
return context.timeout if context else None
async def _call_grpc(
self,
method: Callable[..., Any],
request: Any,
context: ClientCallContext | None,
**kwargs: Any,
) -> Any:
return await method(
request,
metadata=self._get_grpc_metadata(context),
timeout=self._get_grpc_timeout(context),
**kwargs,
)
async def _call_grpc_stream(
self,
method: Callable[..., Any],
request: Any,
context: ClientCallContext | None,
**kwargs: Any,
) -> AsyncGenerator[StreamResponse]:
stream = method(
request,
metadata=self._get_grpc_metadata(context),
timeout=self._get_grpc_timeout(context),
**kwargs,
)
while True:
response = await stream.read()
if response == grpc.aio.EOF: # pyright: ignore[reportAttributeAccessIssue]
break
yield response