Transcript Excerpt: Hermes config 里的思考强度参数
Date: 2026-04-13
Context(背景)
Buu 想确认 Hermes 的 config 里,模型相关的“思考强度”参数到底该写在哪里,以及当前机器上是不是已经配过。
Working conclusion reached in-session(会话中形成的结论)
- Hermes 里这项配置不该写在
model下面。 - 正确入口是:
agent.reasoning_effort
- 可用值是:
noneminimallowmediumhighxhigh
- 如果用 Hermes CLI,直接设置:
hermes config set agent.reasoning_effort high
Checked result on this machine(本机核对结果)
- 当前主配置已经有:
agent.reasoning_effort: high
- 同时还看到:
delegation.reasoning_effort: ''
- 这表示当前主代理思考强度已经显式设为
high,子代理没有单独覆盖,默认继承主代理。
Durable takeaway(可长期复用结论)
- Hermes 里“模型思考强度”虽然影响请求时的 reasoning 行为,但配置位置属于 agent 层,不属于 model 层。
- 要查当前有没有生效,优先看
~/.hermes/config.yaml里的agent.reasoning_effort。 - 要区分主代理和子代理时,再额外看
delegation.reasoning_effort。