fix: 修复回复分割问题

This commit is contained in:
2025-12-09 23:11:21 +08:00
parent 6ce381bc1d
commit 25a5e72c07

View File

@@ -1799,6 +1799,7 @@ class DefaultReplyer:
) )
if content: if content:
if not global_config.response_splitter.enable or global_config.response_splitter.split_mode != 'llm':
# 移除 [SPLIT] 标记,防止消息被分割 # 移除 [SPLIT] 标记,防止消息被分割
content = content.replace("[SPLIT]", "") content = content.replace("[SPLIT]", "")