Customizing Models
From prompt engineering to fine-tuning to building autonomous agents.
Some steps reference prerequisites outside this path. Use the prep links inside those steps before continuing.
- Step 1
Prompt Engineering Basics
CompletedLearn the core techniques for writing effective prompts: system messages, few-shot examples, and structured instructions.
beginner 7 min readPrep recommended: What Is a Large Language Model? - Step 2
Fine-Tuning vs Prompt Engineering
CompletedLearn when to shape an LLM with prompts versus when to change its behavior with fine-tuning, and the trade-offs of each.
intermediate 10 min read - Step 3
PEFT (LoRA) and Fine-Tuning Recipes
CompletedLearn why LoRA-style parameter-efficient tuning is the default in practice and how to choose robust fine-tuning recipes.
intermediate 11 min read - Step 4
Instruction Tuning, RLHF, and DPO
CompletedTrace how base models become assistants through supervised instruction tuning and preference optimization methods like RLHF and DPO.
advanced 12 min read - Step 5
Tool Use / Function Calling
CompletedInteractiveUnderstand how models call external code safely and reliably using structured outputs, validation, and execution boundaries.
intermediate 10 min readPrep recommended: Retrieval-Augmented Generation (RAG) - Step 6
Agents: Planning, Tool Orchestration, and Guardrails
CompletedLearn how LLM agents execute multi-step workflows with planning, tool loops, recovery logic, and safety boundaries.
advanced 12 min readPrep recommended: Chunking & Indexing Strategies for RAG