AI-powered invoice reconciliation for LATAM SMEs. Runs locally. Pays on-chain.
Small logistics companies in Latin America process hundreds of invoices per month manually. The result:
- 💸 $5K–$50K USD/year lost to duplicate payments, fake suppliers, and quantity mismatches
- ⏱️ 7 minutes per invoice of repetitive human validation
- 🔓 23% of invoices contain discrepancies that go undetected until it's too late
Khipu (Quechua for "knot", the Incan accounting system) is an end-to-end invoice validation pipeline that:
- Extracts data from any invoice photo — even crumpled, low-quality ones
- Validates using QVAC multimodal AI running locally on the user's laptop (no cloud, no data leak)
- Reconciles automatically against Purchase Orders and Delivery Guides
- Decides via traffic-light system (🟢 Approve / 🟡 Review / 🔴 Block)
- Pays with one click through MetaMask (USDT on Ethereum/Sepolia)
# Clone
git clone https://github.com/gonnnzaDev/khipu.git
cd khipu
# Backend
python -m venv venv
venv\Scripts\activate # Windows
# source venv/bin/activate # Linux/Mac
pip install -r requirements.txt
python -m uvicorn main:app --reload --port 8000
# Frontend (separate terminal)
cd frontend/kiphu-frontend
npm install
npm run dev