Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 13,518 Bytes
1e9763b 79b2fcc de136d0 1e9763b 79b2fcc de136d0 d6f16e0 de136d0 5fd5de2 e8a3722 5fd5de2 f817978 ccbe2d2 0eeb657 bea6687 d9a3b65 64bf289 d9a3b65 da0136f a644598 64a9ca9 bea6687 dcf7e9f de136d0 5af3ab5 ee12938 de136d0 1e9763b 82b0c13 1e9763b de136d0 82b0c13 de136d0 79b2fcc de136d0 30aa6c1 de136d0 89b1b00 de136d0 ee12938 89b1b00 ee12938 89b1b00 de136d0 1e9763b 79b2fcc 89b1b00 1e9763b f817978 f4ebc8f f817978 f4ebc8f f817978 1e9763b de136d0 f4ebc8f f817978 89b1b00 79b2fcc 89b1b00 de136d0 64bf289 1e9763b de136d0 b7bfe6f 79b2fcc 64bf289 b7bfe6f 1e9763b de136d0 d6f16e0 de136d0 1e9763b 82b0c13 1e9763b af26485 89b1b00 da0136f f817978 b6155b0 f817978 b6155b0 64bf289 e8a3722 5fd5de2 e8a3722 5fd5de2 f817978 eaf2575 68a4e49 eaf2575 aa207f7 bea6687 ccbe2d2 0eeb657 ccbe2d2 0eeb657 ccbe2d2 0eeb657 ccbe2d2 1e9763b 89b1b00 82b0c13 a644598 89b1b00 79b2fcc 89b1b00 | 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 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 | """
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 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.papers_tool import HF_PAPERS_TOOL_SPEC, hf_papers_handler
from agent.tools.plan_tool import PLAN_TOOL_SPEC, plan_tool_handler
from agent.tools.research_tool import RESEARCH_TOOL_SPEC, research_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], hf_token: str | None = None, local_mode: bool = False):
self.tools: dict[str, ToolSpec] = {}
self.mcp_servers: dict[str, dict[str, Any]] = {}
for tool in create_builtin_tools(local_mode=local_mode):
self.register_tool(tool)
self.mcp_client: Client | None = None
if mcp_servers:
mcp_servers_payload = {}
for name, server in mcp_servers.items():
data = server.model_dump()
if hf_token:
data.setdefault("headers", {})["Authorization"] = f"Bearer {hf_token}"
mcp_servers_payload[name] = data
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,
)
try:
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']}")
except Exception as e:
logger.warning("Failed to load OpenAPI search tool: %s", e)
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:
try:
await self.mcp_client.__aenter__()
await self.mcp_client.initialize()
await self.register_mcp_tools()
self._mcp_initialized = True
except Exception as e:
logger.warning("MCP connection failed, continuing without MCP tools: %s", e)
self.mcp_client = None
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
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(local_mode: bool = False) -> list[ToolSpec]:
"""Create built-in tool specifications"""
# in order of importance
tools = [
# Research sub-agent (delegates to read-only tools in independent context)
ToolSpec(
name=RESEARCH_TOOL_SPEC["name"],
description=RESEARCH_TOOL_SPEC["description"],
parameters=RESEARCH_TOOL_SPEC["parameters"],
handler=research_handler,
),
# 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,
),
# Paper discovery and reading
ToolSpec(
name=HF_PAPERS_TOOL_SPEC["name"],
description=HF_PAPERS_TOOL_SPEC["description"],
parameters=HF_PAPERS_TOOL_SPEC["parameters"],
handler=hf_papers_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 or local tools (highest priority)
if local_mode:
from agent.tools.local_tools import get_local_tools
tools = get_local_tools() + tools
else:
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
|