From fbbb09e9a5eda56afda62a7296680145e0d65f94 Mon Sep 17 00:00:00 2001 From: chengyongru <2755839590@qq.com> Date: Sun, 14 Jun 2026 00:14:21 +0800 Subject: [PATCH] fix: use config base for file tools Maintainer edit: after #4314 moved shared tool config models to nanobot.config_base, keep FileToolsConfig on the new dependency boundary so the PR passes the architecture guard. --- nanobot/agent/tools/filesystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nanobot/agent/tools/filesystem.py b/nanobot/agent/tools/filesystem.py index 23549ef9..9c185421 100644 --- a/nanobot/agent/tools/filesystem.py +++ b/nanobot/agent/tools/filesystem.py @@ -16,7 +16,7 @@ from nanobot.agent.tools.schema import ( StringSchema, tool_parameters_schema, ) -from nanobot.config.schema import Base +from nanobot.config_base import Base from nanobot.security.workspace_access import current_tool_workspace from nanobot.utils.helpers import build_image_content_blocks, detect_image_mime