import Image from "next/image"; import Link from "next/link"; import { getAllPosts } from "@/lib/mdx"; import profileImage from "@/public/profile.jpeg"; export default function Home() { const posts = getAllPosts(); const latestPost = posts[0]; const latestPostHref = latestPost ? `/blog/${latestPost.slug}` : "/blog"; return (

Akshay Kolli / Research + Writing

World models and reinforcement learning.

I'm a CS PhD student at UMass Lowell building world models for autonomous agents.

Latest essay Writing Resume Email
); }