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

Function createOutputBuffer

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

Source from the content-addressed store, hash-verified

1556}
1557
1558function createOutputBuffer(): BoundedChunkBuffer<MakaPiToolOutputDelta> {
1559 return new BoundedChunkBuffer({
1560 maxChars: LIVE_TOOL_BUFFER_MAX_CHARS,
1561 maxChunks: LIVE_TOOL_BUFFER_MAX_CHUNKS,
1562 textOf: (delta) => delta.chunk,
1563 withText: (delta, chunk) => ({ ...delta, chunk }),
1564 sequence: (delta) => delta.seq,
1565 });
1566}
1567
1568function findShellRunParent(
1569 state: MakaPiTranscriptState,

Calls

no outgoing calls

Tested by

no test coverage detected