(streamId: string)
| 242 | |
| 243 | // Helper to check if we should record this stream |
| 244 | const shouldRecord = (streamId: string): boolean => { |
| 245 | if (!traceId) return true // Record all if no filter |
| 246 | return streamId === recordingStreamId |
| 247 | } |
| 248 | |
| 249 | // Subscribe to content chunks |
| 250 | const unsubscribeContent = aiEventClient.on( |
no outgoing calls
no test coverage detected