(lines, line, state)
| 397 | } |
| 398 | |
| 399 | function appendConversationLine(lines, line, state) { |
| 400 | if (state.conversationLineCount >= state.maxConversationLines) { |
| 401 | state.conversationTruncated = true; |
| 402 | return false; |
| 403 | } |
| 404 | lines.push(line); |
| 405 | state.conversationLineCount++; |
| 406 | return true; |
| 407 | } |
| 408 | |
| 409 | function appendAgentText(lines, text, state) { |
| 410 | let displayText = text; |
no outgoing calls
no test coverage detected