This innovative insurance platform transforms fraud detection for verified document retrieval using advanced AI-powered mechanisms. By reducing the reliance on manual verification, the system enhances efficiency while delivering real-time fraud analysis through multiple layers of security checks.
This project was created for the Hackathon Hack-AI-Thon conducted by SBI.
Demo.mp4

This project leverages the following technologies:
- TypeScript
- Flask
- Neo4J
- XGBoost
- CNN
- Mistral OCR
- Isolation Forest
To set up the Neo4j database, run the following Cypher queries:
// 1. Create a unique constraint on the email field
CREATE CONSTRAINT user_email IF NOT EXISTS
ON (u:User) ASSERT u.email IS UNIQUE;
// 2. Create indexes for better query performance
CREATE INDEX user_name IF NOT EXISTS
FOR (u:User) ON (u.name);
CREATE INDEX user_surname IF NOT EXISTS
FOR (u:User) ON (u.surname);