feat: Auto-Summary 会话日志自动摘要工具#539
Open
zhangPinkdolphin wants to merge 1 commit into
Open
Conversation
在 Agent 工作流中自动检测关键决策点(方案选择、确认执行、阶段完成), 将摘要写入 discussion_log.md。 - auto_summary.py: 核心模块,支持 online(钩子模式)和 offline(批量扫描) - plugins/auto_summary_plugin.py: 通过 hooks 系统注册 turn_after 事件 - tests/test_auto_summary.py: 48 个单元测试覆盖所有功能路径
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
概述
为 GenericAgent 添加会话日志自动摘要功能,支持大数据量日志的快速查询和摘要。
变更内容
1. auto_summary.py
2. plugins/auto_summary_plugin.py
3. tests/test_auto_summary.py
解决的问题