docs(config): fix custom_agents examples

This commit is contained in:
edxeth 2026-02-26 20:55:58 +01:00
parent da1e160add
commit 922ff7f2bc

View File

@ -233,7 +233,10 @@ Example:
"reviewer-fast": { "reviewer-fast": {
"model": "anthropic/claude-haiku-4-5", "model": "anthropic/claude-haiku-4-5",
"temperature": 0, "temperature": 0,
"reasoningEffort": "medium" "thinking": {
"type": "enabled",
"budgetTokens": 20000
}
} }
} }
} }
@ -243,11 +246,13 @@ On-demand invocation through task delegation:
```ts ```ts
task( task(
subagent_type="translator", {
load_skills=[], subagent_type: "translator",
description="Translate release notes", load_skills: [],
prompt="Translate docs/CHANGELOG.md into Korean while preserving markdown structure.", description: "Translate release notes",
run_in_background=false, prompt: "Translate docs/CHANGELOG.md into Korean while preserving markdown structure.",
run_in_background: false,
},
) )
``` ```