(file: ToolFileValue)
| 548 | }; |
| 549 | |
| 550 | const outputFileContent = (file: ToolFileValue): ContentBlock[] => [ |
| 551 | { |
| 552 | type: "text", |
| 553 | text: `File output: ${toolFileSummaryLine(file)}`, |
| 554 | }, |
| 555 | ...toolFileContent(file), |
| 556 | ]; |
| 557 | |
| 558 | const isFileOutputItem = ( |
| 559 | item: ExecuteOutputItem, |
no test coverage detected