feat(auto_analysis_time): 将 auto_analysis_time 配置改为 list,满足支持配置每日多个时间点总结的需求 (#79)

This commit is contained in:
SXP-Simon
2026-02-05 21:35:45 +08:00
parent b85139d138
commit fe2c9d74c4
3 changed files with 81 additions and 29 deletions
+7 -4
View File
@@ -34,10 +34,13 @@
"hint": "默认分析最近几天的消息,建议1-7天"
},
"auto_analysis_time": {
"type": "string",
"description": "自动分析时间",
"default": "09:00",
"hint": "每日自动分析的时间,格式HH:MM"
"type": "list",
"description": "自动分析时间列表",
"default": ["09:00"],
"hint": "每日自动分析的时间点列表,格式HH:MM,支持多个时间点",
"items": {
"type": "string"
}
},
"enable_auto_analysis": {
"type": "bool",