(log)
| 1502 | return false; |
| 1503 | } |
| 1504 | function _temp(log) { |
| 1505 | return [log, buildSearchableText(log)]; |
| 1506 | } |
| 1507 | function extractSearchableText(message: SerializedMessage): string { |
| 1508 | // Only extract from user and assistant messages that have content |
| 1509 | if (message.type !== 'user' && message.type !== 'assistant') { |
nothing calls this directly
no test coverage detected