-
Notifications
You must be signed in to change notification settings - Fork 420
Expand file tree
/
Copy pathfastapi_app.py
More file actions
194 lines (166 loc) · 6.92 KB
/
fastapi_app.py
File metadata and controls
194 lines (166 loc) · 6.92 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
import logging
from collections.abc import Awaitable, Callable
from typing import TYPE_CHECKING, Any
if TYPE_CHECKING:
from fastapi import APIRouter, FastAPI, Request, Response
from fastapi.responses import JSONResponse
from starlette.exceptions import HTTPException as StarletteHTTPException
_package_fastapi_installed = True
else:
try:
from fastapi import APIRouter, FastAPI, Request, Response
from fastapi.responses import JSONResponse
from starlette.exceptions import HTTPException as StarletteHTTPException
_package_fastapi_installed = True
except ImportError:
APIRouter = Any
FastAPI = Any
Request = Any
Response = Any
StarletteHTTPException = Any
_package_fastapi_installed = False
from a2a.compat.v0_3.rest_adapter import REST03Adapter
from a2a.server.apps.jsonrpc.jsonrpc_app import CallContextBuilder
from a2a.server.apps.rest.rest_adapter import RESTAdapter
from a2a.server.context import ServerCallContext
from a2a.server.request_handlers.request_handler import RequestHandler
from a2a.types.a2a_pb2 import AgentCard
from a2a.utils.constants import AGENT_CARD_WELL_KNOWN_PATH
logger = logging.getLogger(__name__)
_HTTP_TO_GRPC_STATUS_MAP = {
400: 'INVALID_ARGUMENT',
401: 'UNAUTHENTICATED',
403: 'PERMISSION_DENIED',
404: 'NOT_FOUND',
405: 'UNIMPLEMENTED',
409: 'ALREADY_EXISTS',
415: 'INVALID_ARGUMENT',
422: 'INVALID_ARGUMENT',
500: 'INTERNAL',
501: 'UNIMPLEMENTED',
502: 'INTERNAL',
503: 'UNAVAILABLE',
504: 'DEADLINE_EXCEEDED',
}
class A2ARESTFastAPIApplication:
"""A FastAPI application implementing the A2A protocol server REST endpoints.
Handles incoming REST requests, routes them to the appropriate
handler methods, and manages response generation including Server-Sent Events
(SSE).
"""
def __init__( # noqa: PLR0913
self,
agent_card: AgentCard,
http_handler: RequestHandler,
extended_agent_card: AgentCard | None = None,
context_builder: CallContextBuilder | None = None,
card_modifier: Callable[[AgentCard], Awaitable[AgentCard] | AgentCard]
| None = None,
extended_card_modifier: Callable[
[AgentCard, ServerCallContext], Awaitable[AgentCard] | AgentCard
]
| None = None,
enable_v0_3_compat: bool = False,
):
"""Initializes the A2ARESTFastAPIApplication.
Args:
agent_card: The AgentCard describing the agent's capabilities.
http_handler: The handler instance responsible for processing A2A
requests via http.
extended_agent_card: An optional, distinct AgentCard to be served
at the authenticated extended card endpoint.
context_builder: The CallContextBuilder used to construct the
ServerCallContext passed to the http_handler. If None, no
ServerCallContext is passed.
card_modifier: An optional callback to dynamically modify the public
agent card before it is served.
extended_card_modifier: An optional callback to dynamically modify
the extended agent card before it is served. It receives the
call context.
enable_v0_3_compat: If True, mounts backward-compatible v0.3 protocol
endpoints under the '/v0.3' path prefix using REST03Adapter.
"""
if not _package_fastapi_installed:
raise ImportError(
'The `fastapi` package is required to use the'
' `A2ARESTFastAPIApplication`. It can be added as a part of'
' `a2a-sdk` optional dependencies, `a2a-sdk[http-server]`.'
)
self._adapter = RESTAdapter(
agent_card=agent_card,
http_handler=http_handler,
extended_agent_card=extended_agent_card,
context_builder=context_builder,
card_modifier=card_modifier,
extended_card_modifier=extended_card_modifier,
)
self.enable_v0_3_compat = enable_v0_3_compat
self._v03_adapter = None
if self.enable_v0_3_compat:
self._v03_adapter = REST03Adapter(
agent_card=agent_card,
http_handler=http_handler,
extended_agent_card=extended_agent_card,
context_builder=context_builder,
card_modifier=card_modifier,
extended_card_modifier=extended_card_modifier,
)
def build(
self,
agent_card_url: str = AGENT_CARD_WELL_KNOWN_PATH,
rpc_url: str = '',
**kwargs: Any,
) -> FastAPI:
"""Builds and returns the FastAPI application instance.
Args:
agent_card_url: The URL for the agent card endpoint.
rpc_url: The URL for the A2A REST endpoint base path.
**kwargs: Additional keyword arguments to pass to the FastAPI constructor.
Returns:
A configured FastAPI application instance.
"""
app = FastAPI(**kwargs)
@app.exception_handler(StarletteHTTPException)
async def http_exception_handler(
request: Request, exc: StarletteHTTPException
) -> Response:
"""Catches framework-level HTTP exceptions.
For example, 404 Not Found for bad routes, 422 Unprocessable Entity
for schema validation, and formats them into the A2A standard
google.rpc.Status JSON format (AIP-193).
"""
grpc_status = _HTTP_TO_GRPC_STATUS_MAP.get(
exc.status_code, 'UNKNOWN'
)
return JSONResponse(
status_code=exc.status_code,
content={
'error': {
'code': exc.status_code,
'status': grpc_status,
'message': str(exc.detail)
if hasattr(exc, 'detail')
else 'HTTP Exception',
}
},
media_type='application/json',
)
if self.enable_v0_3_compat and self._v03_adapter:
v03_adapter = self._v03_adapter
v03_router = APIRouter()
for route, callback in v03_adapter.routes().items():
v03_router.add_api_route(
f'{rpc_url}{route[0]}', callback, methods=[route[1]]
)
app.include_router(v03_router)
router = APIRouter()
for route, callback in self._adapter.routes().items():
router.add_api_route(
f'{rpc_url}{route[0]}', callback, methods=[route[1]]
)
@router.get(f'{rpc_url}{agent_card_url}')
async def get_agent_card(request: Request) -> Response:
card = await self._adapter.handle_get_agent_card(request)
return JSONResponse(card)
app.include_router(router)
return app