Writeups

Quick thoughts on building AI systems, shipping to production, and what actually works.

Agentic AI
January 22, 2026
3 min

Building a 4-agent system that makes 500+ decisions daily

Coordinating 44 tools across 6 MCP servers taught me more about failure handling than any tutorial. I spent two weeks debugging crashes before realizing it wasn't the LLM—it was how agents handled tool timeouts.

Read more →
AI Engineering
December 8, 2025
3 min

Automating workflows for 5,000 students with LangChain

Integrated OpenAI API and LangChain to automate data extraction and classification at University at Buffalo. The trick was knowing when to cache responses and when real-time API calls actually mattered.

Read more →
Backend
November 17, 2025
4 min

Scaling FastAPI backends with async processing

Moved from blocking operations to Celery-based async task queues at Roche, handling high-volume patient data pipelines. Response times dropped 75% after proper PostgreSQL indexing and background job architecture.

Read more →
DevOps
October 14, 2025
3 min

Containerizing FastAPI services with Docker and AWS

Set up CI/CD pipelines with GitHub Actions and Docker at UB, reducing deployment time from manual releases to automated pushes. The infrastructure setup with Terraform made AWS deployments reproducible across environments.

Read more →