Generative AI (GenAI)
How tools like ChatGPT really work β tokens, transformers, prompting, agents, RAG, and deployment.
π Assignments & course material (original docs shared in the course)
How AI like ChatGPT actually works
β± 25 min read Β· π 8 topics
This is your very first GenAI class.
How to actually talk to an AI so it does what you want
β± 25 min read Β· π 9 topics
In Session 1 we learned how an LLM works on the inside.
Giving the AI hands: from chatbot to agent
β± 23 min read Β· π 7 topics
In Session 1 you learned that an LLM is just a next-token predictor that lives in a frozen brain with no memory and a knowledge cutoff.
Giving an AI an open book: how RAG works
β± 23 min read Β· π 7 topics
In Session 1 you learned that an LLM only knows what it absorbed during training β so it has a knowledge cutoff , can't see your private files, andβ¦
Making RAG actually good
β± 27 min read Β· π 8 topics
Last time (Session 4) you built a basic RAG system: store documents, find the relevant ones, and feed them to the model.
Building real apps: LangChain & LangGraph
β± 24 min read Β· π 8 topics
So far you've learned what a model is (Session 1), how to talk to it well (Session 2), how to give it tools and turn it into an agent (Session 3),β¦
Building agents the easy way: the Agent SDK
β± 22 min read Β· π 7 topics
In Session 6 you wired up agents by hand with LangChain and LangGraph β drawing every node and edge yourself.
Threads & Tracing β keeping memory of, and watching, your agent
β± 22 min read Β· π 5 topics
In Session 7 you built your first agent with the Agent SDK.
How AI agents remember things
β± 20 min read Β· π 5 topics
Back in Session 1 we learned a surprising fact: the model itself has no memory .
Teaching AI to remember connections, not just facts
β± 17 min read Β· π 4 topics
In Session 9 we gave our agent a memory; in Sessions 4β5 we taught it to search documents with vectors.
Talking to AI out loud β how voice agents work
β± 20 min read Β· π 5 topics
You've already met the AI "brain" (the LLM from Session 1) and seen how it can act as an agent that uses tools (Sessions 3 & 7).
How AI agents plug into tools and talk to each other
β± 24 min read Β· π 8 topics
In earlier sessions you taught a single agent to call tools and hand work to other agents.
Shipping your GenAI app to the real world
β± 23 min read Β· π 7 topics
This is the final class.