About Me
From robotics to AI infrastructure—my journey as a systems thinker.
Learn moreProjects
Featured projects spanning ML deployment, AI systems, and full-stack engineering.
View allSkills
Technical capabilities organized by problem class.
ExploreContact
Let's discuss systems, AI infrastructure, or collaboration.
ConnectCurrently Working On
Latest Work
CodeBase — AI-Powered Codebase Intelligence
Semantic search over any GitHub repo — understand any codebase in seconds.
Indexes any GitHub repository into a semantic vector store — ask natural-language questions and get grounded, code-aware answers. Multi-repo comparison with side-by-side architectural analysis lets you benchmark codebases against each other. Embeddings stored in FAISS, metadata in AWS DynamoDB, raw files in S3. Groq LLaMA-3.3-70B drives inference for sub-second response times at scale.
POST /search
repo: "github.com/user/repo"
query: "how is auth handled?"
# sentence-transformers embed
# FAISS ANN search
# Groq LLaMA-3.3-70B answer
{
"answer": "JWT via middleware...",
"sources": ["auth.py:42"],
"latency_ms": 312
}