My Projects Portfolio View on GitHub

Things I've built trying to make it work offline.

Four projects I'm proud of — RAG pipelines, local agents, and the packaging work that turns a script into something that actually runs. If one piques your interest, take a look.

LazyMIND

Offline RAG Study Assistant · Aug 2026

Fully offline RAG pipeline — PDF → chunks → embeddings → ChromaDB → local LLM via Ollama. Fixed a "lost in the middle" retrieval bug by tuning context size, then packaged the whole thing into a standalone Windows desktop app.

Python LLMs ChromaDB Streamlit

OfflineComputerAiAgent

Computer-Use Agent · Aug 2026

A vision-language agent that reads the screen and drives the mouse and keyboard itself — opening apps, searching, clicking UI elements based purely on visual context, with robust JSON tool-call parsing underneath.

Python Ollama LLM PyAutoGUI OOP

DataManager

Open-Source PyPI Package · May 2026

An open-source Python framework for data engineering and analytics workflows — 1,000+ downloads on PyPI. A unified API across CSV, JSON, and in-memory backends, backed by an automated PyTest suite.

Python Pandas OOP

MiniNeuralNetworkFramework

Deep Learning From Scratch · Apr 2026

A neural network framework built from scratch — no TensorFlow, no PyTorch. Forward propagation, backpropagation, and gradient descent, with modular layer abstractions and a clean, layer-by-layer training API.

Python NumPy ML Math Deep Learning