The LLM Lexicon, Part 3: 30 More Core Concepts, Illustrated
LLM terminology has become a prerequisite for reading any AI engineering paper or system design doc. A visual glossary that connects terms like "speculative decoding" or "flash attention" to their mechanical purpose cuts through the jargon and gives engineers a faster on-ramp to optimization and deployment decisions.
The third installment of an illustrated glossary maps out 30 additional core concepts in large language models. Each entry pairs a concise definition with a diagram, covering the machinery that makes modern LLMs tick: speculative decoding, flash attention, mixture of experts, and quantization techniques like GPTQ and AWQ.
Agent-related concepts get significant attention, including ReAct, Plan-and-Solve, and multi-agent collaboration patterns. The glossary also addresses safety and alignment through RLHF, constitutional AI, and red teaming, alongside practical deployment concerns like KV cache management and continuous batching.
The series functions as a visual reference for the sprawling LLM terminology landscape. This batch spans the operational middle ground between raw architecture and end-user applications, clarifying how models are made faster, safer, and more capable of tool use.
The glossary's structure reveals a field that has split into three distinct engineering disciplines: inference optimization (making models fast), agent orchestration (making models act), and safety alignment (making models behave). Each now has its own deep sub-vocabulary.
Quantization methods like GPTQ and AWQ have quietly become the unsung enablers of the local LLM boom. Without them, running a 70B-parameter model on a single GPU would remain a datacenter-only proposition.
Agent architectures like ReAct and Plan-and-Solve are converging on a common pattern: an explicit separation of reasoning from execution, with the model acting as its own supervisor. This mirrors how human experts work and suggests the next wave of agent frameworks will bake this split into their core abstractions.