()
| 1547 | } |
| 1548 | |
| 1549 | function 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 | |
| 1558 | function createOutputBuffer(): BoundedChunkBuffer<MakaPiToolOutputDelta> { |
| 1559 | return new BoundedChunkBuffer({ |
no outgoing calls
no test coverage detected