forked from openai/openai-agents-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutil.py
More file actions
260 lines (212 loc) · 9.16 KB
/
util.py
File metadata and controls
260 lines (212 loc) · 9.16 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
import functools
import json
from dataclasses import dataclass
from typing import TYPE_CHECKING, Any, Callable, Optional, Protocol, Union
import httpx
from typing_extensions import NotRequired, TypedDict
from .. import _debug
from ..exceptions import AgentsException, ModelBehaviorError, UserError
from ..logger import logger
from ..run_context import RunContextWrapper
from ..strict_schema import ensure_strict_json_schema
from ..tool import FunctionTool, Tool, ToolOutputImageDict, ToolOutputTextDict
from ..tracing import FunctionSpanData, get_current_span, mcp_tools_span
from ..util._types import MaybeAwaitable
if TYPE_CHECKING:
from mcp.types import Tool as MCPTool
from ..agent import AgentBase
from .server import MCPServer
class HttpClientFactory(Protocol):
"""Protocol for HTTP client factory functions.
This interface matches the MCP SDK's McpHttpClientFactory but is defined locally
to avoid accessing internal MCP SDK modules.
"""
def __call__(
self,
headers: Optional[dict[str, str]] = None,
timeout: Optional[httpx.Timeout] = None,
auth: Optional[httpx.Auth] = None,
) -> httpx.AsyncClient: ...
@dataclass
class ToolFilterContext:
"""Context information available to tool filter functions."""
run_context: RunContextWrapper[Any]
"""The current run context."""
agent: "AgentBase"
"""The agent that is requesting the tool list."""
server_name: str
"""The name of the MCP server."""
ToolFilterCallable = Callable[["ToolFilterContext", "MCPTool"], MaybeAwaitable[bool]]
"""A function that determines whether a tool should be available.
Args:
context: The context information including run context, agent, and server name.
tool: The MCP tool to filter.
Returns:
Whether the tool should be available (True) or filtered out (False).
"""
class ToolFilterStatic(TypedDict):
"""Static tool filter configuration using allowlists and blocklists."""
allowed_tool_names: NotRequired[list[str]]
"""Optional list of tool names to allow (whitelist).
If set, only these tools will be available."""
blocked_tool_names: NotRequired[list[str]]
"""Optional list of tool names to exclude (blacklist).
If set, these tools will be filtered out."""
ToolFilter = Union[ToolFilterCallable, ToolFilterStatic, None]
"""A tool filter that can be either a function, static configuration, or None (no filtering)."""
def create_static_tool_filter(
allowed_tool_names: Optional[list[str]] = None,
blocked_tool_names: Optional[list[str]] = None,
) -> Optional[ToolFilterStatic]:
"""Create a static tool filter from allowlist and blocklist parameters.
This is a convenience function for creating a ToolFilterStatic.
Args:
allowed_tool_names: Optional list of tool names to allow (whitelist).
blocked_tool_names: Optional list of tool names to exclude (blacklist).
Returns:
A ToolFilterStatic if any filtering is specified, None otherwise.
"""
if allowed_tool_names is None and blocked_tool_names is None:
return None
filter_dict: ToolFilterStatic = {}
if allowed_tool_names is not None:
filter_dict["allowed_tool_names"] = allowed_tool_names
if blocked_tool_names is not None:
filter_dict["blocked_tool_names"] = blocked_tool_names
return filter_dict
class MCPUtil:
"""Set of utilities for interop between MCP and Agents SDK tools."""
@classmethod
async def get_all_function_tools(
cls,
servers: list["MCPServer"],
convert_schemas_to_strict: bool,
run_context: RunContextWrapper[Any],
agent: "AgentBase",
) -> list[Tool]:
"""Get all function tools from a list of MCP servers."""
tools = []
tool_names: set[str] = set()
for server in servers:
server_tools = await cls.get_function_tools(
server, convert_schemas_to_strict, run_context, agent
)
server_tool_names = {tool.name for tool in server_tools}
if len(server_tool_names & tool_names) > 0:
raise UserError(
f"Duplicate tool names found across MCP servers: "
f"{server_tool_names & tool_names}"
)
tool_names.update(server_tool_names)
tools.extend(server_tools)
return tools
@classmethod
async def get_function_tools(
cls,
server: "MCPServer",
convert_schemas_to_strict: bool,
run_context: RunContextWrapper[Any],
agent: "AgentBase",
) -> list[Tool]:
"""Get all function tools from a single MCP server."""
with mcp_tools_span(server=server.name) as span:
tools = await server.list_tools(run_context, agent)
span.span_data.result = [tool.name for tool in tools]
return [cls.to_function_tool(tool, server, convert_schemas_to_strict) for tool in tools]
@classmethod
def to_function_tool(
cls, tool: "MCPTool", server: "MCPServer", convert_schemas_to_strict: bool
) -> FunctionTool:
"""Convert an MCP tool to an Agents SDK function tool."""
invoke_func = functools.partial(cls.invoke_mcp_tool, server, tool)
schema, is_strict = tool.inputSchema, False
# MCP spec doesn't require the inputSchema to have `properties`, but OpenAI spec does.
if "properties" not in schema:
schema["properties"] = {}
if convert_schemas_to_strict:
try:
schema = ensure_strict_json_schema(schema)
is_strict = True
except Exception as e:
logger.info(f"Error converting MCP schema to strict mode: {e}")
return FunctionTool(
name=tool.name,
description=tool.description or "",
params_json_schema=schema,
on_invoke_tool=invoke_func,
strict_json_schema=is_strict,
)
@classmethod
async def invoke_mcp_tool(
cls, server: "MCPServer", tool: "MCPTool", context: RunContextWrapper[Any], input_json: str
) -> Union[
str,
ToolOutputTextDict,
ToolOutputImageDict,
list[Union[ToolOutputTextDict, ToolOutputImageDict]],
]:
"""Invoke an MCP tool and return the result as a string."""
try:
json_data: dict[str, Any] = json.loads(input_json) if input_json else {}
except Exception as e:
if _debug.DONT_LOG_TOOL_DATA:
logger.debug(f"Invalid JSON input for tool {tool.name}")
else:
logger.debug(f"Invalid JSON input for tool {tool.name}: {input_json}")
raise ModelBehaviorError(
f"Invalid JSON input for tool {tool.name}: {input_json}"
) from e
if _debug.DONT_LOG_TOOL_DATA:
logger.debug(f"Invoking MCP tool {tool.name}")
else:
logger.debug(f"Invoking MCP tool {tool.name} with input {input_json}")
try:
result = await server.call_tool(tool.name, json_data)
except Exception as e:
logger.error(f"Error invoking MCP tool {tool.name}: {e}")
raise AgentsException(f"Error invoking MCP tool {tool.name}: {e}") from e
if _debug.DONT_LOG_TOOL_DATA:
logger.debug(f"MCP tool {tool.name} completed.")
else:
logger.debug(f"MCP tool {tool.name} returned {result}")
# If structured content is requested and available, use it exclusively
tool_output: Union[
str,
ToolOutputTextDict,
ToolOutputImageDict,
list[Union[ToolOutputTextDict, ToolOutputImageDict]],
]
if server.use_structured_content and result.structuredContent:
tool_output = json.dumps(result.structuredContent)
else:
tool_output_list: list[Union[ToolOutputTextDict, ToolOutputImageDict]] = []
for item in result.content:
if item.type == "text":
tool_output_list.append(ToolOutputTextDict(type="text", text=item.text))
elif item.type == "image":
tool_output_list.append(
ToolOutputImageDict(
type="image", image_url=f"data:{item.mimeType};base64,{item.data}"
)
)
else:
# Fall back to regular text content
tool_output_list.append(
ToolOutputTextDict(type="text", text=str(item.model_dump(mode="json")))
)
if len(tool_output_list) == 1:
tool_output = tool_output_list[0]
else:
tool_output = tool_output_list
current_span = get_current_span()
if current_span:
if isinstance(current_span.span_data, FunctionSpanData):
current_span.span_data.output = tool_output
current_span.span_data.mcp_data = {
"server": server.name,
}
else:
logger.warning(
f"Current span is not a FunctionSpanData, skipping tool output: {current_span}"
)
return tool_output