mirror of
https://github.com/anthropics/claude-code-action.git
synced 2026-08-22 03:18:54 +08:00
fix(format): filter out thinking_tokens system messages from step summary (#1479)
## Summary Signed-off-by: anish <anishesg@users.noreply.github.com> Co-authored-by: anish <anishesg@users.noreply.github.com>
This commit is contained in:
Executable → Regular
+2
-1
@@ -268,7 +268,8 @@ export function groupTurnsNaturally(data: Turn[]): GroupedContent[] {
|
||||
type: "system_init",
|
||||
tools_count: tools.length,
|
||||
});
|
||||
} else {
|
||||
} else if (subtype !== "thinking_tokens") {
|
||||
// Skip thinking_tokens - internal progress events not meant for summary
|
||||
groupedContent.push({
|
||||
type: "system_other",
|
||||
data: turn,
|
||||
|
||||
Reference in New Issue
Block a user