MCPcopy
hub / github.com/TanStack/ai / PunctuationStrategy

Class PunctuationStrategy

packages/ai/src/activities/chat/stream/strategies.ts:22–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20 * Useful for natural text flow in UI
21 */
22export 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected