























@@ -175,14 +175,39 @@ lives on the [First-run FAQ](/help/faq-first-run).
175175Yes. Add extra directories via `skills.load.extraDirs` in `~/.openclaw/openclaw.json` (lowest precedence). Default precedence is `<workspace>/skills` → `<workspace>/.agents/skills` → `~/.agents/skills` → `~/.openclaw/skills` → bundled → `skills.load.extraDirs`. `clawhub` installs into `./skills` by default, which OpenClaw treats as `<workspace>/skills` on the next session. If the skill should only be visible to certain agents, pair that with `agents.defaults.skills` or `agents.list[].skills`.
176176 </Accordion>
177177178- <Accordion title="How can I use different models for different tasks?">
178+ <Accordion title="How can I use different models or settings for different tasks?">
179179Today the supported patterns are:
180180181181- **Cron jobs**: isolated jobs can set a `model` override per job.
182-- **Sub-agents**: route tasks to separate agents with different default models.
182+- **Agents**: route tasks to separate agents with different default models, thinking levels, and stream params.
183183- **On-demand switch**: use `/model` to switch the current session model at any time.
184184185-See [Cron jobs](/automation/cron-jobs), [Multi-Agent Routing](/concepts/multi-agent), and [Slash commands](/tools/slash-commands).
185+For example, use the same model with different per-agent settings:
186+187+```json5
188+{
189+ agents: {
190+ list: [
191+ {
192+ id: "coder",
193+ model: "xiaomi/mimo-v2.5-pro",
194+ thinkingDefault: "high",
195+ params: { temperature: 0.1 },
196+ },
197+ {
198+ id: "chat",
199+ model: "xiaomi/mimo-v2.5-pro",
200+ thinkingDefault: "off",
201+ params: { temperature: 0.8 },
202+ },
203+ ],
204+ },
205+}
206+```
207+208+Put shared per-model defaults in `agents.defaults.models["provider/model"].params`, then put agent-specific overrides in flat `agents.list[].params`. Do not define separate nested `agents.list[].models["provider/model"].params` entries for the same model; `agents.list[].models` is for per-agent model catalog and runtime overrides.
209+210+See [Cron jobs](/automation/cron-jobs), [Multi-Agent Routing](/concepts/multi-agent), [Configuration](/gateway/config-agents), and [Slash commands](/tools/slash-commands).
186211187212 </Accordion>
188213此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。