mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-20 15:33:54 +00:00
feat(moa): support per-slot reasoning effort
This commit is contained in:
parent
6997dc81cd
commit
3dca75b45c
8 changed files with 279 additions and 16 deletions
|
|
@ -132,6 +132,35 @@ moa:
|
|||
|
||||
Leave it unset (or `0`/blank) to keep the prior uncapped behavior.
|
||||
|
||||
### Per-slot reasoning effort
|
||||
|
||||
Reference and aggregator slots may also set `reasoning_effort`. Use this when
|
||||
you want the same model to contribute at different depths, or when the
|
||||
aggregator should think harder than the advisory references. Valid values match
|
||||
Hermes' normal reasoning controls: `none`, `minimal`, `low`, `medium`, `high`,
|
||||
`xhigh`, and `max`.
|
||||
|
||||
```yaml
|
||||
moa:
|
||||
presets:
|
||||
deep_review:
|
||||
reference_models:
|
||||
- provider: openai-codex
|
||||
model: gpt-5.6-sol
|
||||
reasoning_effort: low
|
||||
- provider: openai-codex
|
||||
model: gpt-5.6-sol
|
||||
reasoning_effort: xhigh
|
||||
- provider: xai-oauth
|
||||
model: grok-4.5
|
||||
aggregator:
|
||||
provider: openai-codex
|
||||
model: gpt-5.6-sol
|
||||
reasoning_effort: high
|
||||
```
|
||||
|
||||
Omit `reasoning_effort` to use the provider/Hermes default for that slot.
|
||||
|
||||
## Terminal preset management
|
||||
|
||||
```bash
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue