Agentic Learning StudioGenerate your own lesson →
Build AI Projects: Hands-On Guides

Build Projects · Guide

Build AI Projects: Hands-On Guides

Learn by building — RAG apps, tool-calling chatbots, agents, eval harnesses, model serving.

The fastest way to learn AI engineering is to build. This guide is a set of end-to-end projects: a RAG app with LangChain or LlamaIndex, a tool-calling chatbot, an agent with LangGraph, an evaluation harness with promptfoo, adding memory and observability to an agent, and serving models with vLLM or Ollama.

Generate your own lesson →

What you'll learn

Lessons in this guide (10)

Frequently asked questions

How do I build a RAG app?

Ingest and chunk your documents, embed the chunks into a vector store, then at query time retrieve the top matches and pass them to the LLM as context with an instruction to answer only from the sources and cite them.

What's the best first AI project?

A document Q&A / RAG chatbot over a small set of your own docs. It touches embeddings, vector search, prompting, and grounding — the core skills — without needing to train anything.

How do I build an AI agent?

Start with an LLM, define a few typed tools it can call, and run a loop: send the prompt + tool schemas, execute any tool the model requests, feed the result back, and repeat until it returns a final answer.

Other guides