remove:移除response_willing_amplifier

This commit is contained in:
SengokuCola
2025-06-04 22:27:18 +08:00
parent d30f35fe20
commit 458d4a3220
5 changed files with 2 additions and 11 deletions

View File

@@ -52,7 +52,6 @@ class APIBotConfig:
emoji_chance: float # 表情符号出现概率
thinking_timeout: int # 思考超时时间
willing_mode: str # 意愿模式
response_willing_amplifier: float # 回复意愿放大器
response_interested_rate_amplifier: float # 回复兴趣率放大器
down_frequency_rate: float # 降低频率率
emoji_response_penalty: float # 表情回复惩罚

View File

@@ -43,7 +43,7 @@ class ClassicalWillingManager(BaseWillingManager):
self.chat_reply_willing[chat_id] = min(current_willing, 3.0)
reply_probability = min(
max((current_willing - 0.5), 0.01) * global_config.normal_chat.response_willing_amplifier * 2, 1
max((current_willing - 0.5), 0.01) * 2, 1
)
# 检查群组权限(如果是群聊)

View File

@@ -107,9 +107,6 @@ class NormalChatConfig(ConfigBase):
talk_frequency: float = 1
"""回复频率阈值"""
response_willing_amplifier: float = 1.0
"""回复意愿放大系数"""
response_interested_rate_amplifier: float = 1.0
"""回复兴趣度放大系数"""