Finance-document specialisation
A general parser turns every document into the same shape. Finance documents (bank statements, payslips, brokerage statements) have a known schema and known correctness invariants — opening + transactions = closing. A specialised parser leverages that.
opening_balance, transactions[] with running_balance, closing_balance, plus validation.balance_chain that asserts the chain. We bake EU-format awareness (SEPA, IBAN, multi-currency) in.- Bank-statement, payslip, brokerage, invoice, receipt schemas
- Balance-chain integrity asserted in the response
- EU + US format coverage tested on real bank exports
- Pre-trained doc_type endpoints, not generic parse
- Generic parse — any document type
- Best-in-class table benchmarks
- Finance invariants left to the caller