Building intelligent, full-stack systems @ Unify Technologies — from production-ready RAG chatbots to voice-driven spatial XR applications.

I bridge the gap between complex AI systems and responsive interfaces — building RAG pipelines that actually ground data, robust backend schemas, and cross-platform experiences that quietly do the work.
A selection of application workflows, LLM systems, and products I have helped construct.
Chat with your PDF documents and receive grounded, source-backed answers in real time.
A Retrieval-Augmented Generation (RAG) mobile application. Orchestrated with LangChain, powered by Groq LLMs and Cohere embeddings for low-latency semantic search, utilizing Qdrant vector database and MongoDB metadata storage.

Hands-free spatial healthcare assistant displaying real-time patient charts and vitals via voice dictation.
Extended reality medical dashboard built in Jetpack Compose and Android XR SDK. Features a high-performance SpeechRecognizer voice-engine and intent mapping with weighted-keyword scoring for clinical commands.

Settle debts, track shared expenses, and split bills in real time with offline support.
A full-stack expense tracker featuring Supabase Auth, PostgreSQL schema sync, Redux state management, input validation, and offline-friendly workflows for zero-network interruptions.

Secure registration system executing end-to-end CRUD operations with JWT authentication.
Full-stack client-server app. Implemented JWT access/refresh token rotation, request validation middleware, CORS management, Neon PostgreSQL indexing, and Express.js rate-limiting.
const verifyJWT = (req, res, next) => {
const authHeader = req.headers.authorization;
if (!authHeader?.startsWith('Bearer ')) return res.sendStatus(401);
const token = authHeader.split(' ')[1];
jwt.verify(token, process.env.ACCESS_TOKEN_SECRET, (err, decoded) => {
if (err) return res.status(403).json({ message: "Session Expired" });
req.studentId = decoded.id;
next();
});
};

Manasa.
My path into engineering is driven by a deep fascination with building tools that simplify real-world workloads. I graduated with a Bachelor of Engineering in Electronics and Communication Engineering from Matrusri Engineering College (Osmania University) in 2025.
Through my software internships at Unify Technologies and Zenetia AI Labs, I have gained hands-on experience structuring production-grade full-stack systems. Specifically, I focus on integrating Large Language Models (LLMs) with vector indices (Qdrant) and structuring responsive native mobile experiences (React Native, Expo).
I thrive in settings that require cross-functional collaboration, clean typescript patterns, and robust software testing pipelines.
Python Fullstack (Digital Edify, 2025) • Full Stack Web Development (Coursera) • Python Programming (Udemy) • Embedded Development (Eduskills) • Git & GitHub Essentials (Udemy).