Files
astrbot_plugin_qq_group_dai…/_conf_schema.json
T
回归天空 e6f6c303ae [v1.1.0] (定时推送分析 | PDF 功能 | propmt 调整)
- 修复了部分 bug
- 优化了权限情况,管理员控制绝大部分命令(防止滥用 token)
- 增加了定时自动触发分析功能
- 发送 PDF 版的推送,提供命令安装相关配置,也可以不配置 PDF 版
2025-08-29 00:03:58 +08:00

91 lines
3.0 KiB
JSON

{
"enabled_groups": {
"type": "list",
"description": "启用分析功能的QQ群列表",
"default": [],
"hint": "填入允许使用分析功能的QQ群号,为空则所有群都可使用",
"items": {
"type": "string"
}
},
"max_messages": {
"type": "int",
"description": "最大分析消息数量",
"default": 1000,
"hint": "单次分析的最大消息条数,建议500-2000"
},
"analysis_days": {
"type": "int",
"description": "默认分析天数",
"default": 1,
"hint": "默认分析最近几天的消息,建议1-7天"
},
"auto_analysis_time": {
"type": "string",
"description": "自动分析时间",
"default": "09:00",
"hint": "每日自动分析的时间,格式HH:MM"
},
"enable_auto_analysis": {
"type": "bool",
"description": "启用自动分析",
"default": false,
"hint": "是否在指定时间自动进行群聊分析,启用需要在群内手动触发一次分析 /分析设置 test ,否则获取不到实例,不会自动分析"
},
"output_format": {
"type": "string",
"description": "输出格式",
"default": "image",
"hint": "分析报告的输出格式:image(图片)、text(文本)、pdf(PDF文件)"
},
"min_messages_threshold": {
"type": "int",
"description": "最小消息数阈值",
"default": 50,
"hint": "进行分析所需的最小消息数量"
},
"topic_analysis_enabled": {
"type": "bool",
"description": "启用话题分析",
"default": true,
"hint": "是否使用LLM进行智能话题分析"
},
"user_title_analysis_enabled": {
"type": "bool",
"description": "启用用户称号分析",
"default": true,
"hint": "是否使用LLM进行用户称号分析"
},
"max_topics": {
"type": "int",
"description": "最大话题数量",
"default": 5,
"hint": "分析报告中显示的最大话题数量"
},
"max_user_titles": {
"type": "int",
"description": "最大用户称号数量",
"default": 8,
"hint": "分析报告中显示的最大用户称号数量"
},
"max_query_rounds": {
"type": "int",
"description": "最大消息查询轮数",
"default": 35,
"hint": "⚠️ 警告:增加此值会导致大量Token消耗!默认值35轮(有一定消耗)。设置过高可能导致LLM费用激增"
},
"pdf_output_dir": {
"type": "string",
"description": "PDF输出目录",
"default": "data/plugins/astrbot-qq-group-daily-analysis/reports",
"hint": "PDF报告文件的保存目录"
},
"pdf_filename_format": {
"type": "string",
"description": "PDF文件名格式",
"default": "群聊分析报告_{group_id}_{date}.pdf",
"hint": "PDF文件名格式,支持变量:{group_id}(群号)、{date}(日期)"
}
}