| 20 | * Useful for natural text flow in UI |
| 21 | */ |
| 22 | export class PunctuationStrategy implements ChunkStrategy { |
| 23 | private readonly punctuation = /[.,!?;:\n]/ |
| 24 | |
| 25 | shouldEmit(chunk: string, _accumulated: string): boolean { |
| 26 | return this.punctuation.test(chunk) |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Batch Strategy - emit every N chunks |
nothing calls this directly
no outgoing calls
no test coverage detected