(messages: Array<{ senderName: string; content: string }>)
| 149 | } |
| 150 | |
| 151 | function formatMessages(messages: Array<{ senderName: string; content: string }>): string { |
| 152 | return messages.map((m) => `${m.senderName}: ${m.content}`).join('\n') |
| 153 | } |
| 154 | |
| 155 | export function splitIntoSegments( |
| 156 | messages: Array<{ senderName: string; content: string }>, |
no outgoing calls
no test coverage detected