Spaces:
Running
Running
File size: 12,141 Bytes
0c252e4 bdbcdab ecacd30 0c252e4 bdbcdab ecacd30 160da13 e7068c0 ecacd30 ba44575 0d8b29e ba44575 b307ff7 a6dcda8 63a4db3 8b2c9e3 4197b96 a33baef 0972775 8b2c9e3 c92b763 ecacd30 4197b96 2ca459e ecacd30 0c252e4 ecacd30 0c252e4 ecacd30 bdbcdab ecacd30 7473699 ecacd30 2ca459e 7473699 2ca459e 7473699 ecacd30 0c252e4 bdbcdab 7473699 0c252e4 b307ff7 bdbcdab b307ff7 0c252e4 ecacd30 b307ff7 7473699 bdbcdab 7473699 ecacd30 e7068c0 ecacd30 bdbcdab 0c252e4 ecacd30 226dea1 bdbcdab 226dea1 0c252e4 ecacd30 160da13 ecacd30 0c252e4 b9c2325 7473699 b307ff7 5e8489d b307ff7 5e8489d 0d8b29e ba44575 0d8b29e ba44575 b307ff7 706d95d bab19bd 706d95d 4d8a789 8b2c9e3 a6dcda8 63a4db3 a6dcda8 63a4db3 a6dcda8 63a4db3 a6dcda8 0c252e4 7473699 a33baef 7473699 bdbcdab 7473699 | 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 344 345 | """
Tool system for the agent
Provides ToolSpec and ToolRouter for managing both built-in and MCP tools
"""
import logging
import warnings
from dataclasses import dataclass
from typing import Any, Awaitable, Callable, Optional
logger = logging.getLogger(__name__)
from fastmcp import Client
from fastmcp.exceptions import ToolError
from lmnr import observe
from mcp.types import EmbeddedResource, ImageContent, TextContent
from agent.config import MCPServerConfig
from agent.tools.dataset_tools import (
HF_INSPECT_DATASET_TOOL_SPEC,
hf_inspect_dataset_handler,
)
from agent.tools.docs_tools import (
EXPLORE_HF_DOCS_TOOL_SPEC,
HF_DOCS_FETCH_TOOL_SPEC,
explore_hf_docs_handler,
hf_docs_fetch_handler,
)
from agent.tools.github_find_examples import (
GITHUB_FIND_EXAMPLES_TOOL_SPEC,
github_find_examples_handler,
)
from agent.tools.github_list_repos import (
GITHUB_LIST_REPOS_TOOL_SPEC,
github_list_repos_handler,
)
from agent.tools.github_read_file import (
GITHUB_READ_FILE_TOOL_SPEC,
github_read_file_handler,
)
from agent.tools.hf_repo_files_tool import (
HF_REPO_FILES_TOOL_SPEC,
hf_repo_files_handler,
)
from agent.tools.hf_repo_git_tool import (
HF_REPO_GIT_TOOL_SPEC,
hf_repo_git_handler,
)
from agent.tools.jobs_tool import HF_JOBS_TOOL_SPEC, hf_jobs_handler
from agent.tools.plan_tool import PLAN_TOOL_SPEC, plan_tool_handler
from agent.tools.sandbox_tool import get_sandbox_tools
# NOTE: Private HF repo tool disabled - replaced by hf_repo_files and hf_repo_git
# from agent.tools.private_hf_repo_tools import (
# PRIVATE_HF_REPO_TOOL_SPEC,
# private_hf_repo_handler,
# )
# Suppress aiohttp deprecation warning
warnings.filterwarnings(
"ignore", category=DeprecationWarning, module="aiohttp.connector"
)
NOT_ALLOWED_TOOL_NAMES = ["hf_jobs", "hf_doc_search", "hf_doc_fetch", "hf_whoami"]
def convert_mcp_content_to_string(content: list) -> str:
"""
Convert MCP content blocks to a string format compatible with LLM messages.
Based on FastMCP documentation, content can be:
- TextContent: has .text field
- ImageContent: has .data and .mimeType fields
- EmbeddedResource: has .resource field with .text or .blob
Args:
content: List of MCP content blocks
Returns:
String representation of the content suitable for LLM consumption
"""
if not content:
return ""
parts = []
for item in content:
if isinstance(item, TextContent):
# Extract text from TextContent blocks
parts.append(item.text)
elif isinstance(item, ImageContent):
# TODO: Handle images
# For images, include a description with MIME type
parts.append(f"[Image: {item.mimeType}]")
elif isinstance(item, EmbeddedResource):
# TODO: Handle embedded resources
# For embedded resources, try to extract text
resource = item.resource
if hasattr(resource, "text") and resource.text:
parts.append(resource.text)
elif hasattr(resource, "blob") and resource.blob:
parts.append(
f"[Binary data: {resource.mimeType if hasattr(resource, 'mimeType') else 'unknown'}]"
)
else:
parts.append(
f"[Resource: {resource.uri if hasattr(resource, 'uri') else 'unknown'}]"
)
else:
# Fallback: try to convert to string
parts.append(str(item))
return "\n".join(parts)
@dataclass
class ToolSpec:
"""Tool specification for LLM"""
name: str
description: str
parameters: dict[str, Any]
handler: Optional[Callable[[dict[str, Any]], Awaitable[tuple[str, bool]]]] = None
class ToolRouter:
"""
Routes tool calls to appropriate handlers.
Based on codex-rs/core/src/tools/router.rs
"""
def __init__(self, mcp_servers: dict[str, MCPServerConfig]):
self.tools: dict[str, ToolSpec] = {}
self.mcp_servers: dict[str, dict[str, Any]] = {}
for tool in create_builtin_tools():
self.register_tool(tool)
self.mcp_client: Client | None = None
if mcp_servers:
mcp_servers_payload = {}
for name, server in mcp_servers.items():
mcp_servers_payload[name] = server.model_dump()
self.mcp_client = Client({"mcpServers": mcp_servers_payload})
self._mcp_initialized = False
def register_tool(self, tool: ToolSpec) -> None:
self.tools[tool.name] = tool
async def register_mcp_tools(self) -> None:
tools = await self.mcp_client.list_tools()
registered_names = []
skipped_count = 0
for tool in tools:
if tool.name in NOT_ALLOWED_TOOL_NAMES:
skipped_count += 1
continue
registered_names.append(tool.name)
self.register_tool(
ToolSpec(
name=tool.name,
description=tool.description,
parameters=tool.inputSchema,
handler=None,
)
)
logger.info(
f"Loaded {len(registered_names)} MCP tools: {', '.join(registered_names)} ({skipped_count} disabled)"
)
async def register_openapi_tool(self) -> None:
"""Register the OpenAPI search tool (requires async initialization)"""
from agent.tools.docs_tools import (
_get_api_search_tool_spec,
search_openapi_handler,
)
# Register search_hf_api_endpoints with dynamic spec
openapi_spec = await _get_api_search_tool_spec()
self.register_tool(
ToolSpec(
name=openapi_spec["name"],
description=openapi_spec["description"],
parameters=openapi_spec["parameters"],
handler=search_openapi_handler,
)
)
logger.info(f"Loaded OpenAPI search tool: {openapi_spec['name']}")
def get_tool_specs_for_llm(self) -> list[dict[str, Any]]:
"""Get tool specifications in OpenAI format"""
specs = []
for tool in self.tools.values():
specs.append(
{
"type": "function",
"function": {
"name": tool.name,
"description": tool.description,
"parameters": tool.parameters,
},
}
)
return specs
async def __aenter__(self) -> "ToolRouter":
if self.mcp_client is not None:
await self.mcp_client.__aenter__()
await self.mcp_client.initialize()
await self.register_mcp_tools()
self._mcp_initialized = True
# Register OpenAPI tool (requires async initialization)
await self.register_openapi_tool()
total_tools = len(self.tools)
logger.info(f"Agent ready with {total_tools} tools total")
return self
async def __aexit__(self, exc_type, exc, tb) -> None:
if self.mcp_client is not None:
await self.mcp_client.__aexit__(exc_type, exc, tb)
self._mcp_initialized = False
@observe(name="call_tool")
async def call_tool(
self, tool_name: str, arguments: dict[str, Any], session: Any = None, tool_call_id: str | None = None
) -> tuple[str, bool]:
"""
Call a tool and return (output_string, success_bool).
For MCP tools, converts the CallToolResult content blocks to a string.
For built-in tools, calls their handler directly.
"""
# Check if this is a built-in tool with a handler
tool = self.tools.get(tool_name)
if tool and tool.handler:
import inspect
# Check if handler accepts session argument
sig = inspect.signature(tool.handler)
if "session" in sig.parameters:
# Check if handler also accepts tool_call_id parameter
if "tool_call_id" in sig.parameters:
return await tool.handler(arguments, session=session, tool_call_id=tool_call_id)
return await tool.handler(arguments, session=session)
return await tool.handler(arguments)
# Otherwise, use MCP client
if self._mcp_initialized:
try:
result = await self.mcp_client.call_tool(tool_name, arguments)
output = convert_mcp_content_to_string(result.content)
return output, not result.is_error
except ToolError as e:
# Catch MCP tool errors and return them to the agent
error_msg = f"Tool error: {str(e)}"
return error_msg, False
return "MCP client not initialized", False
# ============================================================================
# BUILT-IN TOOL HANDLERS
# ============================================================================
def create_builtin_tools() -> list[ToolSpec]:
"""Create built-in tool specifications"""
# in order of importance
tools = [
# Documentation search tools
ToolSpec(
name=EXPLORE_HF_DOCS_TOOL_SPEC["name"],
description=EXPLORE_HF_DOCS_TOOL_SPEC["description"],
parameters=EXPLORE_HF_DOCS_TOOL_SPEC["parameters"],
handler=explore_hf_docs_handler,
),
ToolSpec(
name=HF_DOCS_FETCH_TOOL_SPEC["name"],
description=HF_DOCS_FETCH_TOOL_SPEC["description"],
parameters=HF_DOCS_FETCH_TOOL_SPEC["parameters"],
handler=hf_docs_fetch_handler,
),
# Dataset inspection tool (unified)
ToolSpec(
name=HF_INSPECT_DATASET_TOOL_SPEC["name"],
description=HF_INSPECT_DATASET_TOOL_SPEC["description"],
parameters=HF_INSPECT_DATASET_TOOL_SPEC["parameters"],
handler=hf_inspect_dataset_handler,
),
# Planning and job management tools
ToolSpec(
name=PLAN_TOOL_SPEC["name"],
description=PLAN_TOOL_SPEC["description"],
parameters=PLAN_TOOL_SPEC["parameters"],
handler=plan_tool_handler,
),
ToolSpec(
name=HF_JOBS_TOOL_SPEC["name"],
description=HF_JOBS_TOOL_SPEC["description"],
parameters=HF_JOBS_TOOL_SPEC["parameters"],
handler=hf_jobs_handler,
),
# HF Repo management tools
ToolSpec(
name=HF_REPO_FILES_TOOL_SPEC["name"],
description=HF_REPO_FILES_TOOL_SPEC["description"],
parameters=HF_REPO_FILES_TOOL_SPEC["parameters"],
handler=hf_repo_files_handler,
),
ToolSpec(
name=HF_REPO_GIT_TOOL_SPEC["name"],
description=HF_REPO_GIT_TOOL_SPEC["description"],
parameters=HF_REPO_GIT_TOOL_SPEC["parameters"],
handler=hf_repo_git_handler,
),
ToolSpec(
name=GITHUB_FIND_EXAMPLES_TOOL_SPEC["name"],
description=GITHUB_FIND_EXAMPLES_TOOL_SPEC["description"],
parameters=GITHUB_FIND_EXAMPLES_TOOL_SPEC["parameters"],
handler=github_find_examples_handler,
),
ToolSpec(
name=GITHUB_LIST_REPOS_TOOL_SPEC["name"],
description=GITHUB_LIST_REPOS_TOOL_SPEC["description"],
parameters=GITHUB_LIST_REPOS_TOOL_SPEC["parameters"],
handler=github_list_repos_handler,
),
ToolSpec(
name=GITHUB_READ_FILE_TOOL_SPEC["name"],
description=GITHUB_READ_FILE_TOOL_SPEC["description"],
parameters=GITHUB_READ_FILE_TOOL_SPEC["parameters"],
handler=github_read_file_handler,
),
]
# Sandbox tools (highest priority)
tools = get_sandbox_tools() + tools
tool_names = ", ".join([t.name for t in tools])
logger.info(f"Loaded {len(tools)} built-in tools: {tool_names}")
return tools
|