rgoussu@goussu: ~/library/paths
~/library/paths cat ai-engineering-path.md

AI engineering — the new tooling

# LLMs as an engineering material — a sound working model of what they are, then agents and RAG built from first principles until the magic is demonstrably a while-loop.

Pathsaved 2026-08-08 #path#ai#llm#agents#rag#evals

Goal

Every path in this curriculum assumes AI-assisted work; this one makes the assistance itself an engineering subject. The goal is a sound mental model of LLMs (capabilities and failure modes), the systems layer over them (retrieval, tools, the agent loop) built once with no framework, and the eval discipline that separates engineering from demo-ware. Short path, deliberately: the field churns, but these fundamentals are the stable core.

Prerequisites

Modules

1. The working model

  • Read: LLM fundamentals for engineers.
  • Do: the note's drills — tokenizer archaeology, sampling-parameter sweeps, a failure-mode gallery collected from your own usage.
  • Proof: you can predict which kinds of task a model will flub before running it, and explain temperature to a colleague without hand-waving.

2. The agent, from first principles

3. Retrieval, measured

  • Read: the same concept note's RAG half, now with the agent build behind you.
  • Do: RAG over the knowledge base — over this very repository.
  • Proof: the retrieval eval set's hit-rate target met, and the bottleneck (chunking? retrieval? generation?) identified from evidence, per the subject.

Related