Upload Documents for OCR Processing
Drag & drop files here or click to browse
Supports PDF, JPG, JPEG, PNG, TIFF (Max 100MB each)
For batch processing, upload multiple files at once. The system will automatically parallelize processing for optimal performance.
Processing Guidelines
- For best results with handwritten documents, use the GPT-4o engine
- Table-heavy documents work well with Mistral Pixtral-12B
- Include marginalia for documents with side notes or annotations
- Define your fields schema carefully to ensure accurate extraction
Sample Fields Schema
{
"type": "object",
"properties": {
"invoice_number": {"type": "string"},
"date": {"type": "string"},
"total_amount": {"type": "number"},
"vendor_name": {"type": "string"}
},
"required": ["invoice_number", "date", "total_amount"]
}