Grokking the Agentic AI Engineer Interview
There is a new role, and it does not interview like the old ones. The AI engineer — the person who builds with models rather than training them — sits between the ML researcher and the product engineer, and the interview loop reflects that in-between-ness: some classic data structures, some system design, and a growing core of things that did not exist three years ago. RAG. Evals. Agent loops. Token budgets. Prompt injection. The discipline this whole site is about, asked as interview questions.
This guide is the counterpart to the rest of openagent. The other sections teach you how to build agentic systems; this one teaches you how to prove you can in forty-five minutes across a table. The two are the same body of knowledge — one written as reference, one written as a script you can run under pressure.
Who this is for
The title says agentic AI engineer, but the role wears many names: AI Engineer, Applied AI Engineer, GenAI Engineer, Forward-Deployed Engineer, Member of Technical Staff. What they share is the work — building production systems on top of foundation models: retrieval, tool use, agent orchestration, evaluation, guardrails, and the infrastructure that holds it together.
There is one distinction worth getting straight before you prep, because it determines which loop you'll face:
AI Engineer (this guide)
builds with models
Ships products on top of LLMs. RAG, agents, evals, tool calling, context engineering, serving, cost and latency. Interviews test production judgment and practical coding.
- RAG + agent architecture
- Eval-driven development
- Practical coding, take-homes
- Often: a customer or product round
ML / Research Engineer
trains models
Trains and optimizes models. Distributed training, CUDA, attention internals from scratch, loss functions. Interviews test math, ML theory, and from-memory implementation.
- Attention / transformer from scratch
- Distributed training, GPUs
- ML theory and statistics
- Research-leaning system design
How the guide is built
It follows the structure of the interview itself, in the order you should study it.
The Loop
what to expect
The eight round archetypes, how real companies sequence them, and what each one is actually testing. Start here so the rest has a place to land. → The Interview Loop
The Framework
the spine
ADEPT — a five-phase, time-boxed script for the agentic system-design round, plus the leveling rubric interviewers grade you against. → The ADEPT Framework
Foundations
the syllabus
The nine concept clusters every AI engineer must speak fluently — each cross-linked to the deep-dive that teaches it in full. → Foundations
Patterns
reusable shapes
The workflow and agentic patterns that recur across design questions — learn the shapes, not the answers. → The Pattern Library
Worked Designs
see it applied
Full ADEPT walkthroughs of the questions that actually get asked — RAG assistant, support agent, eval system. → Worked Problems
Coding & Cheat Sheet
the practical round
The AI-specific exercises, the DSA that still appears, take-homes, and a one-page red-flags reference. → Coding Rounds
The three things that actually move the decision
Across every loop, the same three signals separate offers from rejections. Internalize these before any specific question.
The bar is not "can you describe a RAG pipeline." Everyone can now. The bar is whether you reason about the system the way someone who has operated one in production does — cost per successful outcome, retrieval quality as a measured number, the failure mode you are guarding against.
- Production judgment — "I shipped this and here is what broke" beats "the textbook says." Have real stories about LLM unreliability and how you contained it.
- Evals as a reflex — when asked how you know the system works, a strong candidate reaches for golden sets, LLM-as-judge, and regression gates before they reach for "it looked good."
- Knowing when NOT to use an agent — proposing the simplest thing that works (a workflow over an autonomous loop, a prompt over a fine-tune) is a senior signal; reaching for complexity is a junior one.
A note on honesty: the company-specific details throughout this guide are drawn from public engineering blogs, candidate reports on Blind and Glassdoor, and interview-prep write-ups. Where a claim is well-documented it is stated plainly; where it is anecdotal or a reasonable inference, it is flagged. Loops change. Treat the shape as durable and verify the specifics with your recruiter.
Ready? Start with the interview loop to map the terrain, then learn the ADEPT framework — the script you'll run in every design round.