docs(subagents): document default runTimeoutSeconds config (#24594) (thanks @mitchmcalister)

This commit is contained in:
Peter Steinberger
2026-02-24 04:22:25 +00:00
parent 8bcd405b1c
commit 8c5cf2d5b2
5 changed files with 11 additions and 2 deletions

View File

@@ -1683,6 +1683,7 @@ Notes:
subagents: {
model: "minimax/MiniMax-M2.1",
maxConcurrent: 1,
runTimeoutSeconds: 900,
archiveAfterMinutes: 60,
},
},
@@ -1691,6 +1692,7 @@ Notes:
```
- `model`: default model for spawned sub-agents. If omitted, sub-agents inherit the caller's model.
- `runTimeoutSeconds`: default timeout (seconds) for `sessions_spawn` when the tool call omits `runTimeoutSeconds`. `0` means no timeout.
- Per-subagent tool policy: `tools.subagents.tools.allow` / `tools.subagents.tools.deny`.
---