(toolCallId: string, output: string)
| 57 | } |
| 58 | |
| 59 | export function updateProcessOutput(toolCallId: string, output: string): void { |
| 60 | const info = processTerminalForegroundStates.get(toolCallId); |
| 61 | if (info) { |
| 62 | info.currentOutput = output; |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | export function removeRunningProcess(toolCallId: string): void { |
| 67 | processTerminalForegroundStates.delete(toolCallId); |
no test coverage detected