feat: 新增HFC处理器自定义项和思考间隔项

新增了 HFC不同处理器的开启关闭可选项
新增了思考间隔调整
移除无用工具
This commit is contained in:
SengokuCola
2025-05-20 22:56:42 +08:00
parent 25d9032e62
commit af8edd0ef7
9 changed files with 25 additions and 242 deletions

View File

@@ -148,6 +148,17 @@ class FocusChatConfig(ConfigBase):
compress_length_limit: int = 5
"""最多压缩份数,超过该数值的压缩上下文会被删除"""
think_interval: int = 1
"""思考间隔(秒)"""
self_identify_processor: bool = True
"""是否启用自我识别处理器"""
tool_use_processor: bool = True
"""是否启用工具使用处理器"""
working_memory_processor: bool = True
"""是否启用工作记忆处理器"""
@dataclass
class ExpressionConfig(ConfigBase):