(event: z.infer<typeof RunEvent>)
| 561 | } |
| 562 | |
| 563 | log(event: z.infer<typeof RunEvent>) { |
| 564 | if (event.type !== "llm-stream-event") { |
| 565 | this.fileHandle.write(JSON.stringify(event) + "\n"); |
| 566 | } |
| 567 | } |
| 568 | |
| 569 | close() { |
| 570 | this.fileHandle.close(); |
no test coverage detected