feat: Improve OCR process - replace Tesseract with PaddleOCR (#115) #122

Merged
egullickson merged 16 commits from issue-115-improve-ocr-paddleocr into main 2026-02-08 01:13:35 +00:00
Showing only changes of commit 3adbb10ff6 - Show all commits

View File

@@ -49,7 +49,7 @@ async function extractVinFromImage(file: File): Promise<VinOcrResult> {
const response = await apiClient.post('/ocr/extract/vin', formData, {
headers: { 'Content-Type': 'multipart/form-data' },
timeout: 30000, // 30 seconds for OCR processing
timeout: 120000, // 120 seconds for OCR processing
});
const data = response.data;