21 lines
608 B
TOML
21 lines
608 B
TOML
# 消息总结插件配置
|
|
|
|
[general]
|
|
enabled = true
|
|
|
|
[api]
|
|
# 群总结能力改为场景路由,后台切换 summary.daily 即可统一切换实现。
|
|
scene = "summary.daily"
|
|
connect_timeout_seconds = 10
|
|
retry_delays_seconds = [10, 20]
|
|
|
|
[output]
|
|
output_dir = "output"
|
|
image_format = "png"
|
|
# 图片渲染模式:
|
|
# - template: 使用 HTML 模板渲染(模板样式稳定后再切换)
|
|
# - markdown: 使用历史 md2image 样式
|
|
summary_image_mode = "md2image"
|
|
# 总结卡片模板路径(相对项目根目录)
|
|
summary_image_template_path = "plugins/message_summary/templates/gemini_summary_card.html"
|