mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 16:02:32 +00:00
Files: 18 applied, 0 deleted (from 6eb70d8370)
Co-authored-by: Orca <help@stably.ai>
12 lines
307 B
TypeScript
12 lines
307 B
TypeScript
export const RETAINED_STRING_CHUNK_LIMIT = 1_024
|
|
|
|
export function appendCompactedStringChunk(chunks: string[], value: string): void {
|
|
chunks.push(value)
|
|
if (chunks.length <= RETAINED_STRING_CHUNK_LIMIT) {
|
|
return
|
|
}
|
|
const compacted = chunks.join('')
|
|
chunks.length = 0
|
|
chunks.push(compacted)
|
|
}
|