Merge pull request #1375 from NousResearch/hermes/hermes-dd253d81

feat: add direct endpoint overrides for auxiliary and delegation
This commit is contained in:
Teknium 2026-03-14 21:17:42 -07:00 committed by GitHub
commit cb7690b2b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 526 additions and 99 deletions

View file

@ -209,6 +209,14 @@ Delegation has a **depth limit of 2** — a parent (depth 0) can spawn children
delegation:
max_iterations: 50 # Max turns per child (default: 50)
default_toolsets: ["terminal", "file", "web"] # Default toolsets
model: "google/gemini-3-flash-preview" # Optional provider/model override
provider: "openrouter" # Optional built-in provider
# Or use a direct custom endpoint instead of provider:
delegation:
model: "qwen2.5-coder"
base_url: "http://localhost:1234/v1"
api_key: "local-key"
```
:::tip