From e46b396ba55d08539289e8560575f3619165ecac Mon Sep 17 00:00:00 2001 From: Windpicker-owo <3431391539@qq.com> Date: Tue, 7 Oct 2025 13:36:54 +0800 Subject: [PATCH] =?UTF-8?q?feat(config):=20=E8=B0=83=E6=95=B4=E6=B6=88?= =?UTF-8?q?=E6=81=AF=E6=89=93=E6=96=AD=E7=B3=BB=E7=BB=9F=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E4=BB=A5=E9=99=8D=E4=BD=8E=E6=89=93=E6=96=AD=E9=A2=91=E7=8E=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将最大打断次数从10次降至5次 - 将最低打断概率从0.1降至0.05 --- template/bot_config_template.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/bot_config_template.toml b/template/bot_config_template.toml index d69626172..0826b000a 100644 --- a/template/bot_config_template.toml +++ b/template/bot_config_template.toml @@ -124,8 +124,8 @@ thinking_timeout = 40 # MoFox-Bot一次回复最长思考规划时间,超过 # 消息打断系统配置 - 线性概率模型 interruption_enabled = true # 是否启用消息打断系统 -interruption_max_limit = 10 # 每个聊天流的最大打断次数 -interruption_min_probability = 0.1 # 最低打断概率(即使达到较高打断次数,也保证有此概率的打断机会) +interruption_max_limit = 5 # 每个聊天流的最大打断次数 +interruption_min_probability = 0.05 # 最低打断概率(即使达到较高打断次数,也保证有此概率的打断机会) interruption_afc_reduction = 0.05 # 每次连续打断降低的afc阈值数值 # DEPRECATED: interruption_probability_factor (已废弃的配置项)