(toolCallId: string)
| 50 | } |
| 51 | |
| 52 | export function wasToolResultSeen(toolCallId: string): boolean { |
| 53 | return seenToolResults.has(toolCallId) |
| 54 | } |
| 55 | |
| 56 | export function shouldSkipToolCallEvent(event: StreamEvent): boolean { |
| 57 | if (!isToolCallStreamEvent(event)) return false |
no outgoing calls
no test coverage detected