[Misc] Fix docstring typo: buildin -> builtin (#38722)

Co-authored-by: majianhan <majianhan@kylinos.cn>
This commit is contained in:
majianhan
2026-04-01 22:39:46 +08:00
committed by GitHub
parent fa246d5231
commit 2f5c3c1ec0

View File

@@ -52,7 +52,7 @@ MCP_BUILTIN_TOOLS: set[str] = set(BUILTIN_TOOL_TO_MCP_SERVER_LABEL.values())
def has_custom_tools(tool_types: set[str]) -> bool:
"""
Checks if the given tool types are custom tools
(i.e. any tool other than MCP buildin tools)
(i.e. any tool other than MCP builtin tools)
"""
return not tool_types.issubset(MCP_BUILTIN_TOOLS)