(m: {
session_id: string
parent_tool_use_id: string | null
})
| 118 | } |
| 119 | |
| 120 | function scopeKey(m: { |
| 121 | session_id: string |
| 122 | parent_tool_use_id: string | null |
| 123 | }): string { |
| 124 | return `${m.session_id}:${m.parent_tool_use_id ?? ''}` |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * Accumulate text_delta stream_events into full-so-far snapshots per content |
no outgoing calls
no test coverage detected