Projects in KazakhstanProjects in KazakhstanMy entry for the Envato & Contra Challenge! โจ
For this project, I imagined a visual identity for a national park dedicated to protecting the snow leopard or irbis, the traditional name for this rare mountain cat. Itโs a species deeply connected to Central Asian culture and the place where I grew up.
I used Envato as an all-in-one creative toolkit to explore and bring the concept to life, including ImageGen, GraphicsGen, VideoGen, MusicGen, and Stock assets such as photos, videos, and graphics.ย
I've wanted to create something like this for a while, and this challenge gave me the perfect opportunity to finally explore the idea and tell an importantย story through design. ๐
#envatochallenge Agentic Financial Document Intelligence & Transaction Reconciliation Engine
โข Role: Lead AI & Systems Architect
โข Deliverables: Multi-Modal PDF Parser, Hybrid Agent Orchestrator, Deterministic Math Engine, Audit Trail Logger
โข Timeline: 3 Weeks
OVERVIEW
Financial institutions and back-office teams spend thousands of manual hours reconciling unstructured documents (loan contracts, invoices, compliance bylaws) with relational transaction ledgers. Standard LLM wrappers fail catastrophically in this domain due to mathematical hallucinations, version conflicts, and a lack of explainable audit trails.
I engineered an agentic document intelligence system that combines multi-modal PDF extraction with deterministic validation tools to automate complex cross-referencing with 100% computational precision.
THE PROBLEM & DIAGNOSIS
LLM Math Hallucinations: Generative models cannot be trusted to perform exact financial calculations, interest compounding, or tax audits.
Unstructured vs. Tabular Asymmetry: Document facts are scattered across messy layouts, whereas transaction logs live in strict relational schemas.
Document Version Discrepancies: Clauses change across revisions; systems must resolve conflicting policies before executing reconciliation.
KEY ARCHITECTURAL DECISIONS
โข Decision 01: Separation of Reasoning and Execution
The LLM acts strictly as a reasoning and extraction layer, identifying entities and formulas. All financial calculations and reconciliations are handed off to deterministic Python execution sandboxes.
โข Decision 02: Cross-Source Entity Disambiguation
Built a cross-referencing engine that maps unstructured text snippets directly to SQL transaction IDs using hybrid vector-keyword scoring.
โข Decision 03: Fully Auditable Chain-of-Thought
Every validation output includes a step-by-step citation trail pointing to the exact page, bounding box, and ledger entry.
MEASURABLE RESULTS & IMPACT
โข 0% computational hallucination rate achieved via deterministic code execution.
โข 90%+ precision in entity extraction across multi-page, complex financial agreements.
โข Production-grade audit trails satisfying compliance requirements.
TECH STACK
Python 3.11, FastAPI, Pydantic, LangChain, PyMuPDF, Pandas, PostgreSQL / pgvector, Docker.