mirror of https://github.com/Mai-with-u/MaiBot.git
916 B
916 B
Mai NEXT Todo list
version 0.3.0 - 2026-01-11
配置文件设计
- 使用
toml作为配置文件格式 合理使用注释说明当前配置作用(提案)- 使用 python 方法作为配置项说明(提案)
- 取消
bot_config_template.toml - 取消
model_config_template.toml - 取消
template_env
- 取消
- 配置类中的所有原子项目应该只包含以下类型:
str,int,float,bool,list,dict,set- 禁止使用
Union类型 - 禁止使用
tuple类型,使用嵌套dataclass替代 - 复杂类型使用嵌套配置类实现
- 禁止使用
- 配置类中禁止使用除了
model_post_init的方法 - 取代了部分与标准函数混淆的命名
id->item_id
BotConfig 设计
- 精简了配置项,现在只有Nickname和Alias Name了(预期将判断提及移到Adapter端)