docs: document hook model overrides

This commit is contained in:
Peter Steinberger
2026-01-08 09:33:31 +00:00
parent 73988506fe
commit 2567281846
4 changed files with 23 additions and 1 deletions

View File

@@ -49,6 +49,7 @@ that sets `deliver` + optional `provider`/`to`:
sessionKey: "hook:gmail:{{messages[0].id}}",
messageTemplate:
"New email from {{messages[0].from}}\nSubject: {{messages[0].subject}}\n{{messages[0].snippet}}\n{{messages[0].body}}",
model: "openai/gpt-5.2-mini",
deliver: true,
provider: "last"
// to: "+15551234567"
@@ -61,6 +62,9 @@ that sets `deliver` + optional `provider`/`to`:
If you want a fixed channel, set `provider` + `to`. Otherwise `provider: "last"`
uses the last delivery route (falls back to WhatsApp).
To force a cheaper model for Gmail runs, set `model` in the mapping
(`provider/model` or alias). If you enforce `agent.models`, include it there.
To customize payload handling further, add `hooks.mappings` or a JS/TS transform module
under `hooks.transformsDir` (see [`docs/webhook.md`](https://docs.clawd.bot/automation/webhook)).