Home · Portfolio
Selected work, shipped to production.
A snapshot of recent projects across web, mobile, AI and operations. Each one is live, measured and (in most cases) still being improved.
// AI order triage
async function triage(email) {
const data = await extract(email);
if (data.confidence > 0.92) {
return route(data);
}
return escalate(email);
}
// 96% accuracy on 12k samples