MCPcopy Create free account
hub / github.com/apache/maka / createProgressBuffer

Function createProgressBuffer

packages/cli/src/pi-transcript.ts:1549–1556  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1547}
1548
1549function createProgressBuffer(): BoundedChunkBuffer<string> {
1550 return new BoundedChunkBuffer({
1551 maxChars: LIVE_TOOL_BUFFER_MAX_CHARS,
1552 maxChunks: LIVE_TOOL_BUFFER_MAX_CHUNKS,
1553 textOf: (chunk) => chunk,
1554 withText: (_chunk, text) => text,
1555 });
1556}
1557
1558function createOutputBuffer(): BoundedChunkBuffer<MakaPiToolOutputDelta> {
1559 return new BoundedChunkBuffer({

Calls

no outgoing calls

Tested by

no test coverage detected