UNPKG

@thecodingwhale/cv-processor

Version:

CV Processor to extract structured data from PDF resumes using TypeScript

27 lines (26 loc) 705 B
#!/usr/bin/env node /** * CV Processor CLI - Extract structured data from CV/resume PDFs * * Usage: * npx cv-processor-ts input.pdf * * Output: * Creates a JSON file with the same name (input.json) containing the extracted CV data */ /** * Process a CV using AI methods (if API keys available) */ declare function processCv(pdfPath: string, options?: { verbose: boolean; outputPath: string; minAccuracyThreshold: number; accuracyWeights: { personalInfo: number; education: number; experience: number; skills: number; }; accuracyCalculatorType: "traditional" | "null-based"; }): Promise<import("./types").CVData>; export { processCv };