From 6d31a428511b5f42e329010b8e15cfda1f7d6a80 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sun, 10 May 2026 22:51:17 +0800 Subject: [PATCH] docs(concepts): fix typing-indicators config path agent.* -> agents.defaults.* --- docs/concepts/typing-indicators.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/concepts/typing-indicators.md b/docs/concepts/typing-indicators.md index f69d0ccdf557..485dd809ad7c 100644 --- a/docs/concepts/typing-indicators.md +++ b/docs/concepts/typing-indicators.md @@ -36,16 +36,20 @@ Order of "how early it fires": ## Configuration +Set the agent-level default: + ```json5 { - agent: { - typingMode: "thinking", - typingIntervalSeconds: 6, + agents: { + defaults: { + typingMode: "thinking", + typingIntervalSeconds: 6, + }, }, } ``` -You can override mode or cadence per session: +Override mode or cadence per session: ```json5 {