From 37966f8701ad4ce30f23e82e201649d5aeb1b79c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=99=B4=E7=A9=BA?= <3103908461@qq.com> Date: Mon, 10 Nov 2025 17:57:35 +0800 Subject: [PATCH] Add enable_overflow_return_all configuration option --- src/config/official_configs.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/official_configs.py b/src/config/official_configs.py index ad933148..e21d8f96 100644 --- a/src/config/official_configs.py +++ b/src/config/official_configs.py @@ -626,6 +626,9 @@ class ResponseSplitterConfig(ConfigBase): enable_kaomoji_protection: bool = False """是否启用颜文字保护""" + enable_overflow_return_all: bool = False + """是否在超出句子数量限制时合并后一次性返回""" + @dataclass class TelemetryConfig(ConfigBase):