更新机器人配置模板,并添加路径扩展算法规范

- 将bot_config_template.toml中的版本号从7.6.7更新为7.6.8。
- 在bot_config_template.toml中添加了用于控制多个回复的配置选项。
- 引入了一份全面的路径扩展算法规范文档,详细介绍了算法概述、核心数据结构、算法流程、性能优化、接口定义和测试用例。
This commit is contained in:
Windpicker-owo
2025-11-12 19:06:11 +08:00
parent d3b82d1c68
commit 16c14d194e
4 changed files with 1299 additions and 2 deletions

View File

@@ -145,6 +145,13 @@ class ChatConfig(ValidatedConfigBase):
decision_history_length: int = Field(
default=3, ge=1, le=10, description="决策历史记录的长度,用于增强语言模型的上下文连续性"
)
# 多重回复控制配置
enable_multiple_replies: bool = Field(
default=True, description="是否允许多重回复True=允许多个回复动作False=只保留一个回复动作)"
)
multiple_replies_strategy: Literal["keep_first", "keep_best", "keep_last"] = Field(
default="keep_first", description="多重回复处理策略keep_first(保留第一个)keep_best(保留最佳)keep_last(保留最后一个)"
)
class MessageReceiveConfig(ValidatedConfigBase):