mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-06-10 17:35:57 +00:00
d9f4724950
* feat(tool-search): add hash-scoped promoted state to ThreadState * feat(tool-search): add immutable DeferredToolCatalog with stable hash * feat(tool-search): add build_deferred_tool_setup + Command-writing tool_search * refactor(tool-search): replace deferred-tool ContextVar with closures + graph state (#3272) Build the deferred catalog + tool_search tool per agent from the policy-filtered tool list (after skill allowed-tools), pass deferred_names + catalog_hash explicitly to DeferredToolFilterMiddleware and the prompt, and record promotions in ThreadState.promoted (scoped by catalog_hash) via a Command-returning tool_search. Removes DeferredToolRegistry and the _registry_var ContextVar so deferral no longer depends on build/execute sharing an async context. MCP tools are tagged with metadata[deerflow_mcp]; client.py assembles deferral the same way. Catalog is built AFTER tool-policy filtering (no policy-excluded tool can leak via tool_search) and assembly is fail-closed. Migrate tests off the deleted registry APIs; delete the obsolete ContextVar-based #2884 regression (re-covered by state-based tests in a follow-up). * test(tool-search): lock tool_search promotion into next model turn via graph state * test(tool-search): cross-context, policy-leak, fail-closed, #2884 isolation regressions * test(tool-search): align real-LLM e2e with closure-based deferred setup * docs: update DeferredToolFilterMiddleware description for closure+state design * style(tests): drop unused import in test_deferred_setup (ruff) * test(tool-search): harden merge_promoted + replace tautological catalog test From independent code review: - merge_promoted: use existing.get("catalog_hash") so a forward-incompatible or externally-injected persisted promoted dict triggers a replace instead of a KeyError crash; add regression test for the malformed-existing case. - test_deferred_catalog: replace the `== [] or True` tautology (a test that could never fail) with a deterministic invalid-regex->literal-fallback check (positive match on calc + negative empty match). - DeferredToolCatalog: comment why frozen-without-slots is required for the cached_property hash/names fields (adding slots=True would break them). * fix(tool-search): read tool_search.enabled from self._app_config in client DeerFlowClient._ensure_agent called get_app_config() directly to read tool_search.enabled, but the client already resolves and stores its config as self._app_config at construction (and uses it everywhere else). The bare call re-resolves config from disk at agent-build time, which raises FileNotFoundError in environments without a config.yaml (CI) — test_client.py's fixture only patches get_app_config during __init__, so the later call hit the real loader. Use self._app_config, matching the rest of the client. * test(tool-search): lock tool_search post-policy append ordering tool_search is appended after skill-allowlist filtering, so the allowlist can no longer deny it by name. Lock the intended contract: it only appears when allowed MCP tools survive the filter, and its catalog (derived from the already policy-filtered list) can never expose a denied tool. Addresses the ordering observation from the Copilot review on #3342.
152 lines
5.8 KiB
Python
152 lines
5.8 KiB
Python
"""Tool search — deferred tool discovery at runtime.
|
|
|
|
Contains:
|
|
- DeferredToolCatalog: immutable, searchable catalog of deferred tools.
|
|
- build_tool_search_tool: builds the `tool_search` tool as a closure over a
|
|
catalog; it records promotions into graph state via ``Command``.
|
|
- build_deferred_tool_setup: assembles the catalog + tool from a
|
|
policy-filtered tool list (call AFTER tool-policy filtering).
|
|
|
|
The agent sees deferred tool names in <available-deferred-tools> but cannot
|
|
call them until it fetches their full schema via the tool_search tool. The
|
|
deferred set rides on a build-time closure and promotion lives in per-thread
|
|
graph state — there is no ContextVar. Source-agnostic: a tool is "deferred"
|
|
when it carries the ``deerflow_mcp`` metadata tag.
|
|
"""
|
|
|
|
import hashlib
|
|
import json
|
|
import logging
|
|
import re
|
|
from dataclasses import dataclass
|
|
from functools import cached_property
|
|
from typing import Annotated
|
|
|
|
from langchain.tools import BaseTool
|
|
from langchain_core.messages import ToolMessage
|
|
from langchain_core.tools import InjectedToolCallId, tool
|
|
from langchain_core.utils.function_calling import convert_to_openai_function
|
|
from langgraph.types import Command
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
MAX_RESULTS = 5 # Max tools returned per search
|
|
|
|
|
|
# ── Catalog ──
|
|
|
|
|
|
# NOTE: frozen=True without slots=True keeps __dict__, which is what lets the
|
|
# @cached_property fields below cache (they write to instance.__dict__, bypassing
|
|
# the frozen __setattr__). Do NOT add slots=True or hash/names break at runtime.
|
|
@dataclass(frozen=True)
|
|
class DeferredToolCatalog:
|
|
"""Immutable catalog of deferred tools. Pure search, no mutation."""
|
|
|
|
tools: tuple[BaseTool, ...]
|
|
|
|
@cached_property
|
|
def names(self) -> frozenset[str]:
|
|
return frozenset(t.name for t in self.tools)
|
|
|
|
@cached_property
|
|
def hash(self) -> str:
|
|
canon = [{"name": t.name, "schema": convert_to_openai_function(t)} for t in sorted(self.tools, key=lambda t: t.name)]
|
|
blob = json.dumps(canon, sort_keys=True, ensure_ascii=False, default=str)
|
|
return hashlib.sha256(blob.encode("utf-8")).hexdigest()[:16]
|
|
|
|
def search(self, query: str) -> list[BaseTool]:
|
|
if query.startswith("select:"):
|
|
wanted = {n.strip() for n in query[7:].split(",")}
|
|
return [t for t in self.tools if t.name in wanted][:MAX_RESULTS]
|
|
|
|
if query.startswith("+"):
|
|
parts = query[1:].split(None, 1)
|
|
required = parts[0].lower()
|
|
candidates = [t for t in self.tools if required in t.name.lower()]
|
|
if len(parts) > 1:
|
|
candidates.sort(key=lambda t: _catalog_regex_score(parts[1], t), reverse=True)
|
|
return candidates[:MAX_RESULTS]
|
|
|
|
try:
|
|
regex = re.compile(query, re.IGNORECASE)
|
|
except re.error:
|
|
regex = re.compile(re.escape(query), re.IGNORECASE)
|
|
scored: list[tuple[int, BaseTool]] = []
|
|
for t in self.tools:
|
|
searchable = f"{t.name} {t.description or ''}"
|
|
if regex.search(searchable):
|
|
scored.append((2 if regex.search(t.name) else 1, t))
|
|
scored.sort(key=lambda x: x[0], reverse=True)
|
|
return [t for _, t in scored][:MAX_RESULTS]
|
|
|
|
|
|
def _catalog_regex_score(pattern: str, t: BaseTool) -> int:
|
|
try:
|
|
regex = re.compile(pattern, re.IGNORECASE)
|
|
except re.error:
|
|
regex = re.compile(re.escape(pattern), re.IGNORECASE)
|
|
return len(regex.findall(f"{t.name} {t.description or ''}"))
|
|
|
|
|
|
# ── Setup / tool ──
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class DeferredToolSetup:
|
|
tool_search_tool: BaseTool | None
|
|
deferred_names: frozenset[str]
|
|
catalog_hash: str | None
|
|
|
|
|
|
def _is_mcp_tool(t: BaseTool) -> bool:
|
|
return (getattr(t, "metadata", None) or {}).get("deerflow_mcp") is True
|
|
|
|
|
|
def build_tool_search_tool(catalog: DeferredToolCatalog) -> BaseTool:
|
|
catalog_hash = catalog.hash
|
|
|
|
@tool
|
|
def tool_search(query: str, tool_call_id: Annotated[str, InjectedToolCallId]) -> Command:
|
|
"""Fetches full schema definitions for deferred tools so they can be called.
|
|
|
|
Deferred tools appear by name in <available-deferred-tools> in the system
|
|
prompt. Until fetched, only the name is known. This tool matches a query
|
|
against the deferred tools and returns the matched tools complete schemas;
|
|
once returned, a tool becomes callable.
|
|
|
|
Query forms:
|
|
- "select:Read,Edit" -- fetch these exact tools by name
|
|
- "notebook jupyter" -- keyword search, up to max_results best matches
|
|
- "+slack send" -- require "slack" in the name, rank by remaining terms
|
|
"""
|
|
matched = catalog.search(query)[:MAX_RESULTS]
|
|
if not matched:
|
|
content, names = f"No tools found matching: {query}", []
|
|
else:
|
|
content = json.dumps([convert_to_openai_function(t) for t in matched], indent=2, ensure_ascii=False)
|
|
names = [t.name for t in matched]
|
|
return Command(
|
|
update={
|
|
"promoted": {"catalog_hash": catalog_hash, "names": names},
|
|
"messages": [ToolMessage(content=content, tool_call_id=tool_call_id, name="tool_search")],
|
|
}
|
|
)
|
|
|
|
return tool_search
|
|
|
|
|
|
def build_deferred_tool_setup(filtered_tools: list[BaseTool], *, enabled: bool) -> DeferredToolSetup:
|
|
"""Build the deferred-tool setup from a POLICY-FILTERED tool list.
|
|
|
|
Must be called after skill/agent tool-policy filtering so the catalog never
|
|
exposes a tool the current agent is not allowed to use.
|
|
"""
|
|
if not enabled:
|
|
return DeferredToolSetup(None, frozenset(), None)
|
|
deferred = [t for t in filtered_tools if _is_mcp_tool(t)]
|
|
if not deferred:
|
|
return DeferredToolSetup(None, frozenset(), None)
|
|
catalog = DeferredToolCatalog(tuple(deferred))
|
|
return DeferredToolSetup(build_tool_search_tool(catalog), catalog.names, catalog.hash)
|