* Output inspect results as TOON (Token-Oriented Object Notation). * TOON is optimized for LLM consumption with reduced token usage.
(absolutePath: string, deepnoteFile: ReturnType<typeof deserializeDeepnoteFile>)
| 98 | * TOON is optimized for LLM consumption with reduced token usage. |
| 99 | */ |
| 100 | function outputInspectToon(absolutePath: string, deepnoteFile: ReturnType<typeof deserializeDeepnoteFile>): void { |
| 101 | outputToon(buildInspectResult(absolutePath, deepnoteFile), { showEfficiencyHint: true }) |
| 102 | } |
| 103 | |
| 104 | function printDeepnoteFileMetadata( |
| 105 | absolutePath: string, |
no test coverage detected