()
| 1556 | } |
| 1557 | |
| 1558 | function 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 | |
| 1568 | function findShellRunParent( |
| 1569 | state: MakaPiTranscriptState, |
no outgoing calls
no test coverage detected