(ext: string)
| 11 | const RENDERABLE_EXTS = new Set(['pptx', 'docx', 'pdf']) |
| 12 | |
| 13 | export function isRenderableDocExt(ext: string): boolean { |
| 14 | return RENDERABLE_EXTS.has(ext.toLowerCase()) |
| 15 | } |
| 16 | |
| 17 | export interface DocRender { |
| 18 | /** A single contact-sheet grid JPEG of all pages, for the agent's visual QA. */ |
no outgoing calls
no test coverage detected