(file: ToolFileValue)
| 403 | }; |
| 404 | |
| 405 | const outputFileContent = (file: ToolFileValue): ContentBlock[] => [ |
| 406 | { |
| 407 | type: "text", |
| 408 | text: `File output: ${toolFileSummaryLine(file)}`, |
| 409 | }, |
| 410 | ...toolFileContent(file), |
| 411 | ]; |
| 412 | |
| 413 | const isFileOutputItem = ( |
| 414 | item: ExecuteOutputItem, |
no test coverage detected