forked from google-agentic-commerce/AP2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase_server_executor.py
More file actions
180 lines (152 loc) · 5.99 KB
/
Copy pathbase_server_executor.py
File metadata and controls
180 lines (152 loc) · 5.99 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
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""A baseline A2A AgentExecutor utilized by multiple agents.
This provides some custom abilities over the default AgentExecutor:
1. It accepts a list of supported A2A extensions. Upon receiving a message, it
activates any requested extensions that the agent supports.
2. It leverages the FunctionCallResolver to identify the appropriate tool to
use for a given request, and invoking it to complete the task.
3. It logs key events in the Agent Payments Protocol to the watch log. See
watch_log.py for more details.
"""
import abc
import logging
import uuid
from collections.abc import Callable
from typing import Any
from a2a.server.agent_execution.agent_executor import AgentExecutor
from a2a.server.agent_execution.context import RequestContext
from a2a.server.events.event_queue import EventQueue
from a2a.server.tasks.task_updater import TaskUpdater
from a2a.types import Part, Task, TextPart
from a2a.utils.parts import get_data_parts, get_text_parts
from google import genai
from common import watch_log
from common.a2a_extension_utils import EXTENSION_URI
from common.function_call_resolver import FunctionCallResolver
DataPartContent = dict[str, Any]
Tool = Callable[[list[DataPartContent], TaskUpdater, Task | None], Any]
class BaseServerExecutor(AgentExecutor, abc.ABC):
"""A baseline A2A AgentExecutor to be utilized by agents."""
def __init__(
self,
supported_extensions: list[dict[str, Any]] | None,
tools: list[Tool],
system_prompt: str = "You are a helpful assistant.",
):
"""Initialization.
Args:
supported_extensions: Extensions the agent declares that it supports.
tools: Tools supported by the agent.
system_prompt: Helps steer the model when choosing tools.
"""
if supported_extensions is not None:
self._supported_extension_uris = {ext.uri for ext in supported_extensions}
else:
self._supported_extension_uris = set()
self._client = genai.Client()
self._tools = tools
self._tool_resolver = FunctionCallResolver(
self._client, self._tools, system_prompt
)
super().__init__()
async def execute(
self, context: RequestContext, event_queue: EventQueue
) -> None:
"""Execute the agent's logic for a given request context.
Args:
context: The request context containing the message, task ID, etc.
event_queue: The queue to publish events to.
"""
watch_log.log_a2a_request_extensions(context)
text_parts, data_parts = self._parse_request(context)
watch_log.log_a2a_message_parts(text_parts, data_parts)
self._handle_extensions(context)
if EXTENSION_URI not in context.call_context.activated_extensions:
raise ValueError(
"Payment extension not activated."
f" {context.call_context.activated_extensions}"
)
updater = TaskUpdater(
event_queue,
task_id=context.task_id or str(uuid.uuid4()),
context_id=context.context_id or str(uuid.uuid4()),
)
logging.info(
"Server working on (context_id, task_id): (%s, %s)",
updater.context_id,
updater.task_id,
)
await self._handle_request(
text_parts,
data_parts,
updater,
context.current_task,
)
async def cancel(self, context: RequestContext) -> None:
"""Request the agent to cancel an ongoing task."""
async def _handle_request(
self,
text_parts: list[str],
data_parts: list[dict[str, Any]],
updater: TaskUpdater,
current_task: Task | None,
) -> None:
"""Receives a parsed request and dispatches to the appropriate tool.
Args:
text_parts: A list of text parts from the request.
data_parts: A list of data parts from the request.
updater: The TaskUpdater instance for updating the task.
current_task: The current Task, if available.
"""
try:
prompt = (text_parts[0] if text_parts else "").strip()
tool_name = self._tool_resolver.determine_tool_to_use(prompt)
logging.info("Using tool: %s", tool_name)
matching_tools = list(
filter(lambda tool: tool.__name__ == tool_name, self._tools)
)
if len(matching_tools) != 1:
raise ValueError(
f"Expected 1 tool matching {tool_name}, got {len(matching_tools)}"
)
callable_tool = matching_tools[0]
await callable_tool(data_parts, updater, current_task)
except Exception as e: # pylint: disable=broad-exception-caught
error_message = updater.new_agent_message(
parts=[Part(root=TextPart(text=f"An error occurred: {e}"))]
)
await updater.failed(message=error_message)
def _parse_request(
self, context: RequestContext
) -> tuple[list[str], list[dict[str, Any]]]:
"""Parses the request and returns the text and data parts.
Args:
context: The A2A RequestContext
Returns:
A tuple containing the contents of TextPart and DataPart objects.
"""
parts = context.message.parts if context.message else []
text_parts = get_text_parts(parts)
data_parts = get_data_parts(parts)
return text_parts, data_parts
def _handle_extensions(self, context: RequestContext) -> None:
"""Activates any requested extensions that the agent supports.
Args:
context: The A2A RequestContext
"""
requested_uris = context.requested_extensions
activated_uris = requested_uris.intersection(self._supported_extension_uris)
for uri in activated_uris:
context.add_activated_extension(uri)