From 06869b4597006169b908954a09f6e5514b19bc7a Mon Sep 17 00:00:00 2001 From: teapot1de <1916647616@qq.com> Date: Wed, 26 Nov 2025 16:15:09 +0800 Subject: [PATCH] docs: clarify segmented_reply words_count_threshold hint (#3779) Update the configuration hint for `words_count_threshold` to explicitly state that it acts as a maximum limit for segmentation, preventing user confusion about it being a minimum trigger. --- astrbot/core/config/default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index 5a23a8b6..ae9bbecb 100644 --- a/astrbot/core/config/default.py +++ b/astrbot/core/config/default.py @@ -638,7 +638,7 @@ CONFIG_METADATA_2 = { }, "words_count_threshold": { "type": "int", - "hint": "超过这个字数的消息不会被分段回复。默认为 150", + "hint": "分段回复的字数上限。只有字数小于此值的消息才会被分段,超过此值的长消息将直接发送(不分段)。默认为 150", }, "regex": { "type": "string",