| The corpus | Built | artifact | Text, gathered at a scale no person could read |
|---|
| Tokens | Built | process | Text cut into pieces a machine can count |
|---|
| Embeddings | Built | process | Meaning stored as position in space |
|---|
| Parameters | Built | artifact | The adjustable numbers, and the shape they sit in |
|---|
| Training | Built | process | Guess, measure the error, nudge every number |
|---|
| Post-training | Built | process | Why it answers you instead of continuing your sentence |
|---|
| Scale | Built | governs | More data, more parameters, more compute. What that buys, and what it does not |
|---|
| The weights | Junction | artifact | A file of numbers, and nothing else |
|---|
| Interfaces | Run | process | Chat, API, SDK, MCP. The same machine, four doors |
|---|
| Markdown files | Run | artifact | Why plain text became the interface for instructions |
|---|
| The prompt | Run | process | Roles, and the fact that it is all one string |
|---|
| Retrieval | Run | process | Fetching the right paragraph before answering |
|---|
| Memory | Run | process | What persists between runs, and where it lives |
|---|
| Tools | Run | process | How a text machine acts on the world |
|---|
| The stores | Run | store | Four kinds of store, and what each is for |
|---|
| The context window | Run | artifact | Everything the model can see. There is nothing else. |
|---|
| The forward pass | Run | process | One token at a time, from a standing start, every time |
|---|
| Reasoning | Run | process | Thinking out loud is more tokens through the same loop |
|---|
| Sampling | Run | process | Why the same question gives different answers |
|---|
| Attention | Run | governs | How each token decides which others matter |
|---|
| Cost and latency | Run | governs | What you actually pay for, and why it feels slow |
|---|
| Context engineering | Run | governs | Deciding what goes in the window, and what stays out |
|---|
| Context sharding | Run | governs | Splitting work so no one context holds it all |
|---|
| Agents | Run | governs | A model in a loop, with tools and a goal |
|---|
| Orchestration | Run | governs | Arranging many runs: in sequence, in parallel |
|---|
| Evaluation | Run | governs | How you know it worked, and the ways it fails |
|---|
| Guardrails | Run | governs | Limits, accountability, and where they belong |
|---|