/** * Metrics about the parsing process. * * **Availability:** Present when `status` is `"PROCESSED"`. */ export interface ParseRunMetrics { /** The time taken to process the document in milliseconds. */ processingTimeMs: number; /** The number of pages from the document that were parsed. For PDF and image files, this is the actual page count. For spreadsheet files (Excel, CSV), this is an estimated page count based on content volume (~1000 tokens per page). */ pageCount: number; }