Skip to content

代码执行(程序化工具调用)

execute_code 工具允许 Agent 编写 Python 脚本,以程序化方式调用 Hermes 工具,将多步骤工作流压缩为单个 LLM 轮次。脚本在 Agent 主机上的沙盒化子进程中运行,通过 Unix 域套接字 RPC 进行通信。

工作原理

  1. Agent 使用 from hermes_tools import ... 编写 Python 脚本
  2. Hermes 生成一个带有 RPC 函数的 hermes_tools.py 存根模块
  3. Hermes 打开一个 Unix 域套接字并启动 RPC 监听器线程
  4. 脚本在子进程中运行 —— 工具调用通过套接字传回 Hermes
  5. 只有脚本的 print() 输出返回给 LLM;中间工具结果永远不会进入上下文窗口
python
# Agent 可以编写如下脚本:
from hermes_tools import web_search, web_extract

results = web_search("Python 3.13 features", limit=5)
for r in results["data"]["web"]:
    content = web_extract([r["url"]])
    # ... 过滤和处理 ...
print(summary)

沙盒中可用的工具: web_searchweb_extractread_filewrite_filesearch_filespatchterminal(仅前台)。

Agent 何时使用此功能

Agent 在以下情况使用 execute_code

  • 3+ 个工具调用,中间有处理逻辑
  • 批量数据过滤或条件分支
  • 结果循环

关键优势:中间工具结果永远不会进入上下文窗口 —— 只有最终的 print() 输出返回,显著减少令牌使用。

实用示例

数据处理管道

python
from hermes_tools import search_files, read_file
import json

# 查找所有配置文件并提取数据库设置
matches = search_files("database", path=".", file_glob="*.yaml", limit=20)
configs = []
for match in matches.get("matches", []):
    content = read_file(match["path"])
    configs.append({"file": match["path"], "preview": content["content"][:200]})

print(json.dumps(configs, indent=2))

多步骤网络研究

python
from hermes_tools import web_search, web_extract
import json

# 在单轮中搜索、提取和总结
results = web_search("Rust async runtime comparison 2025", limit=5)
summaries = []
for r in results["data"]["web"]:
    page = web_extract([r["url"]])
    for p in page.get("results", []):
        if p.get("content"):
            summaries.append({
                "title": r["title"],
                "url": r["url"],
                "excerpt": p["content"][:500]
            })

print(json.dumps(summaries, indent=2))

批量文件重构

python
from hermes_tools import search_files, read_file, patch

# 查找所有使用已弃用 API 的 Python 文件并修复它们
matches = search_files("old_api_call", path="src/", file_glob="*.py")
fixed = 0
for match in matches.get("matches", []):
    result = patch(
        path=match["path"],
        old_string="old_api_call(",
        new_string="new_api_call(",
        replace_all=True
    )
    if "error" not in str(result):
        fixed += 1

print(f"Fixed {fixed} files out of {len(matches.get('matches', []))} matches")

构建和测试管道

python
from hermes_tools import terminal, read_file
import json

# 运行测试、解析结果并报告
result = terminal("cd /project && python -m pytest --tb=short -q 2>&1", timeout=120)
output = result.get("output", "")

# 解析测试输出
passed = output.count(" passed")
failed = output.count(" failed")
errors = output.count(" error")

report = {
    "passed": passed,
    "failed": failed,
    "errors": errors,
    "exit_code": result.get("exit_code", -1),
    "summary": output[-500:] if len(output) > 500 else output
}

print(json.dumps(report, indent=2))

资源限制

资源限制说明
超时5 分钟 (300s)脚本被 SIGTERM 终止,然后在 5 秒宽限期后使用 SIGKILL
Stdout50 KB输出被截断并显示 [output truncated at 50KB] 通知
Stderr10 KB在非零退出时包含在输出中用于调试
工具调用每次执行 50 次达到限制时返回错误

所有限制都可以通过 config.yaml 配置:

yaml
# 在 ~/.hermes/config.yaml 中
code_execution:
  timeout: 300       # 每个脚本的最大秒数(默认:300)
  max_tool_calls: 50 # 每次执行的最大工具调用数(默认:50)

脚本内部工具调用的工作原理

当您的脚本调用诸如 web_search("query") 之类的函数时:

  1. 调用被序列化为 JSON 并通过 Unix 域套接字发送到父进程
  2. 父进程通过标准的 handle_function_call 处理程序分发
  3. 结果通过套接字发送回来
  4. 函数返回解析后的结果

这意味着脚本内部的工具调用与正常工具调用行为相同 —— 相同的速率限制、相同的错误处理、相同的功能。唯一的限制是 terminal() 仅支持前台(无 backgroundpty 参数)。

错误处理

当脚本失败时,Agent 会收到结构化的错误信息:

  • 非零退出代码:stderr 包含在输出中,因此 Agent 可以看到完整的堆栈跟踪
  • 超时:脚本被终止,Agent 看到 "Script timed out after 300s and was killed."
  • 中断:如果用户在执行期间发送新消息,脚本将被终止,Agent 看到 [execution interrupted — user sent a new message]
  • 工具调用限制:当达到 50 次调用限制时,后续工具调用返回错误消息

响应始终包含 status(success/error/timeout/interrupted)、outputtool_calls_madeduration_seconds

安全

安全模型

子进程在最小环境中运行。API 密钥、令牌和凭证默认被剥离。脚本通过 RPC 通道专门访问工具 —— 除非明确允许,否则它无法从环境变量读取密钥。

名称中包含 KEYTOKENSECRETPASSWORDCREDENTIALPASSWDAUTH 的环境变量被排除。只有安全系统变量(PATHHOMELANGSHELLPYTHONPATHVIRTUAL_ENV 等)被传递。

技能环境变量传递

当技能在其 frontmatter 中声明 required_environment_variables 时,这些变量会在技能加载后自动传递execute_codeterminal 沙盒中。这让技能可以使用其声明的 API 密钥,而不会削弱任意代码的安全态势。

对于非技能用例,您可以在 config.yaml 中显式允许列表变量:

yaml
terminal:
  env_passthrough:
    - MY_CUSTOM_KEY
    - ANOTHER_TOKEN

有关完整详细信息,请参阅安全指南

脚本在临时目录中运行,该目录在执行后清理。子进程在自己的进程组中运行,因此可以在超时或中断时被干净地终止。

execute_code 与 terminal 对比

使用场景execute_codeterminal
中间有工具调用的多步骤工作流
简单的 shell 命令
过滤/处理大型工具输出
运行构建或测试套件
搜索结果循环
交互式/后台进程
需要环境中的 API 密钥⚠️ 仅通过 passthrough✅(大多数都通过)

经验法则: 当您需要以编程方式调用 Hermes 工具并在调用之间进行逻辑处理时使用 execute_code。对于运行 shell 命令、构建和进程使用 terminal

平台支持

代码执行需要 Unix 域套接字,仅在 Linux 和 macOS 上可用。它在 Windows 上自动禁用 —— Agent 回退到常规顺序工具调用。