feat: Expand OCR with fuel receipt scanning and maintenance extraction (#129) #147

Merged
egullickson merged 26 commits from issue-129-expand-ocr-fuel-receipt-maintenance into main 2026-02-13 02:25:55 +00:00
Showing only changes of commit 399313eb6d - Show all commits

View File

@@ -137,7 +137,7 @@ async function extractReceiptFromImage(file: File): Promise<{
const formData = new FormData();
formData.append('file', file);
const response = await apiClient.post('/ocr/extract', formData, {
const response = await apiClient.post('/ocr/extract/receipt', formData, {
headers: { 'Content-Type': 'multipart/form-data' },
timeout: 30000, // 30 seconds for OCR processing
});