THN Interview Prep

Agentic AI — Track overview

Agentic AI means the model does more than answer once: it can choose the next state in a controlled workflow, such as retrieve evidence, call a tool, ask for approval, retry, or stop. The model proposes actions; the application enforces state, permissions, budgets, validation, and audit.

Study this track top to bottom, or jump to one layer when you already know the rest.


2026 baseline

AnchorWhat it means in practice
NIST AI RMF + Generative AI ProfileTreat agents as risk-managed systems: map risks, measure behavior, govern changes, and keep human accountability.
OWASP LLM Top 10 2025Design against prompt injection, sensitive data disclosure, improper output handling, excessive agency, vector weaknesses, misinformation, and unbounded consumption.
OWASP Agentic security guidanceAgent risk is not only the model; it is also tool scope, memory, delegated autonomy, identity, and recoverability.
Modern agent SDKsPrefer typed tools, guardrails, tracing, handoffs, and structured outputs over free-form "do anything" agents.
LangGraph-style runtimesUse explicit state graphs, checkpoints, human interrupts, and durable execution for non-trivial loops.

Simple rule: do not deploy an agent where a deterministic workflow is enough. Use agents when the task needs multi-step reasoning over changing context or tools, and then narrow the action space.

Topic map

PageFocus
Agentic architecture workflowEnd-to-end request path: orchestration, RAG, tools, state, human review, observability
Agentic fundamentalsAgents, tools, loops vs one-shot prompts, state transitions, guardrails
Agent memory, state & storageCheckpoints, scratchpad, long-term memory, vector memory, audit storage
LangChain for agentsMessages, runnables, typed tools, structured chains used inside agents
LangGraph for agentsState graphs, routing, checkpoints, human interrupts, durable execution
LangSmith observabilityTracing, datasets, evaluations, regression gates, release feedback
Agentic productionServing path, security controls, failures, rollout discipline, on-call probes

Companion: Generative AI hub · Security · Gen AI interview pacing.


How the pieces fit together

Loading diagram…

State-to-state lifecycle

Loading diagram…

How to read it: every box is a state owned by your application. The model may recommend the next step, but the orchestrator decides whether the transition is legal.


Interview sound bite

Agents are state machines with stochastic transitions: define state, legal actions (tools), stop conditions, and observability before you chase model tweaks.

Quick interview drills

1. When is an agent justified?

  • Use one when the path depends on intermediate observations. Do not use one for fixed extract-transform-answer flows.

2. What is "excessive agency"?

  • Giving the model too much functionality, permission, or autonomy, so a malformed or injected instruction can cause real damage.

3. What makes an agent production-grade?

  • Typed tools, least privilege, step budgets, human approval for irreversible actions, durable checkpoints, trace redaction, and regression evaluations.

4. Where should safety checks live?

  • In prompts, schemas, tool gateways, policy engines, runtime budgets, and deployment gates. Prompt-only safety is not enough.

Spotted something unclear or wrong on this page?

On this page