005ce566a8
- Provider model_settings (Provider+Model 级别参数配置): DB JSONB → API → GSM → AgentFactory.resolve → 三节点 agent.run 注入 - 新增 data/toolset/regulatory_toolset/: 监管节点专属工具(query_workflow_status / query_task_list / send_file) - send_file 从 interactive_toolset 迁移至 regulatory_toolset,interactive 仅保留 approval - mcp_helper 合入 GlobalPluginManager dispatch tools - 前端 Provider 弹窗参数设置区加 JSON 编辑器(model_settings) - 前端 Plugin 页面新增"重型插件"Tab(HeavyPluginList 占位) - .gitignore 精简:去除系统默认项,修复 data/ 子目录追踪 - data/toolset/ 与 data/plugin/ 首次纳入版本控制 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
56 lines
1.6 KiB
Python
56 lines
1.6 KiB
Python
import asyncio
|
|
|
|
|
|
async def search_file(
|
|
keyword: str,
|
|
directory: str = ".",
|
|
file_pattern: str = "*",
|
|
max_results: int = 20,
|
|
) -> str:
|
|
"""在指定目录下递归搜索包含关键字的文件内容。
|
|
|
|
Args:
|
|
keyword: 要搜索的关键字或正则表达式
|
|
directory: 搜索的根目录,默认当前目录
|
|
file_pattern: 文件名匹配模式,如 "*.py"
|
|
max_results: 最大返回结果数
|
|
|
|
Returns:
|
|
匹配的文件名和行内容
|
|
"""
|
|
from kilostar.utils.sandbox import validate_path, PathViolation
|
|
|
|
try:
|
|
directory = validate_path(directory, write=False)
|
|
except PathViolation as e:
|
|
return f"[Sandbox] {e}"
|
|
|
|
max_results = min(max_results, 100)
|
|
|
|
try:
|
|
grep_args = [
|
|
"grep", "-rn",
|
|
f"--include={file_pattern}",
|
|
"-m", str(max_results),
|
|
"--", keyword, directory,
|
|
]
|
|
proc = await asyncio.create_subprocess_exec(
|
|
*grep_args,
|
|
stdout=asyncio.subprocess.PIPE,
|
|
stderr=asyncio.subprocess.PIPE,
|
|
)
|
|
stdout, _ = await asyncio.wait_for(
|
|
proc.communicate(), timeout=30
|
|
)
|
|
output = stdout.decode("utf-8", errors="replace").strip()
|
|
if not output:
|
|
return f"未找到包含 '{keyword}' 的匹配项"
|
|
lines = output.split("\n")
|
|
if len(lines) > max_results:
|
|
output = "\n".join(lines[:max_results])
|
|
return output
|
|
except asyncio.TimeoutError:
|
|
return "[Error] 搜索超时"
|
|
except Exception as e:
|
|
return f"[Error] 搜索失败: {e}"
|