diff --git a/.openclaw-sync/source.json b/.openclaw-sync/source.json index d34c068bc..304fece55 100644 --- a/.openclaw-sync/source.json +++ b/.openclaw-sync/source.json @@ -1,5 +1,5 @@ { "repository": "openclaw/openclaw", - "sha": "9b0f7e0e829e8d6d2fb7c9f3d1f05480d3e014cf", - "syncedAt": "2026-04-08T09:00:38.403Z" + "sha": "d9dc75774bcb8a58087f50033b5e885431576246", + "syncedAt": "2026-04-08T13:32:25.549Z" } diff --git a/docs/concepts/agent-loop.md b/docs/concepts/agent-loop.md index dd6e45c87..e1aa0cacc 100644 --- a/docs/concepts/agent-loop.md +++ b/docs/concepts/agent-loop.md @@ -151,6 +151,7 @@ See [Plugin hooks](/plugins/architecture#provider-runtime-hooks) for the hook AP - `agent.wait` default: 30s (just the wait). `timeoutMs` param overrides. - Agent runtime: `agents.defaults.timeoutSeconds` default 172800s (48 hours); enforced in `runEmbeddedPiAgent` abort timer. +- LLM idle timeout: `agents.defaults.llm.idleTimeoutSeconds` aborts a model request when no response chunks arrive before the idle window. Set it explicitly for slow local models or reasoning/tool-call providers; set it to 0 to disable. If it is not set, OpenClaw uses `agents.defaults.timeoutSeconds` when configured, otherwise 60s. Cron-triggered runs with no explicit LLM or agent timeout disable the idle watchdog and rely on the cron outer timeout. ## Where things can end early