EthicSecure.AI — Compliance-Aware LLM Gateway

What it is. A production-ready gateway that sits in front of an LLM application and inspects both incoming prompts and outgoing responses before they reach the user, so that unsafe or non-compliant outputs never leave the system.

How it works. Requests are routed through a semantic-routing layer that classifies intent before generation, and retrieval is backed by a Qdrant vector database indexed via LlamaIndex. Policy rules are matched against retrieved context and model output in real time, so enforcement happens without a noticeable hit to response latency.

Why it matters. Most guardrail implementations bolt a keyword filter onto the output side only. This project treats compliance as a retrieval + routing problem, which catches violations that keyword filters miss and scales to new policies without retraining a classifier.

TicketinSite.AI — AI-Driven Product Review Analytics

What it is. An end-to-end analytics platform that pulls customer reviews and mentions from Twitter, Reddit, and Google Play into one pipeline and turns them into structured, actionable insight for product teams.

How it works. Incoming text passes through an LLM-powered spam and noise filter, then a translation step to normalize multilingual reviews into a common language, then clustering to group semantically similar complaints and feature requests together. The output feeds sentiment dashboards and issue clusters ranked by volume and severity.

Why it matters. Product teams typically read reviews manually or rely on star ratings alone, which misses recurring issues buried in free text across platforms. This pipeline surfaces those clusters automatically, across sources, in near real time.

ESS2 Claim Surveillance App

What it is. A full-stack application for automating invoice and expense-claim processing, built to cut down the manual data entry involved in claim surveillance.

How it works. A Next.js frontend gives claim reviewers a working interface, backed by a Flask API that runs OCR over uploaded invoices and receipts to extract line items, amounts, and vendor details automatically instead of requiring manual transcription.

Impact. Reduced manual data entry in the claims workflow by roughly 50%, freeing reviewers to focus on exception handling rather than transcription.