FDEInterviews logo

agents

FDE interview questions tagged agents, across every topic.

47 questions · 5 unlocked for you

Concepts behind "agents"

The curriculum that explains the ideas these questions test.

Foundational
🤖 Retrieval & Agents
AI Agents and Tool UseAn agent is a language model wrapped in a loop that lets it choose tools, act, observe the result, and decide what to do next. The skill interviewers test is judgment: knowing when that loop earns its unpredictability and when a fixed pipeline is cheaper, faster, and safer.
Foundational
🤖 Retrieval & Agents
Context Window Management for FDE AgentsManaging the context window is the discipline of deciding what an agent sees on every step, run against a customer's private data and their token bill. Forward Deployed Engineers treat the window as a budget to allocate with four moves, write, select, compress, and isolate, because a deployment that ignores it is either too expensive to run or too unreliable to trust.
Core
🤖 Retrieval & AgentsSign in
Tool / Function CallingTool calling is how a language model reaches outside itself: it emits a structured request (a tool name plus JSON arguments) that your application executes and feeds back. The model is only as capable as the tools you give it and as reliable as your validation, because the arguments it produces are model output and must never be trusted blindly.
Core
🤖 Retrieval & AgentsSign in
Multi-Agent OrchestrationMulti-agent orchestration coordinates several specialized agents (planner, worker, critic, or researcher and writer) toward one goal, deciding how they communicate, how the flow is structured, and when they stop. The hard judgment is when splitting helps versus when a single well-prompted agent is simpler and far more reliable.
Core
🛡️ AI Security, Privacy & GovernanceSign in
Prompt Injection and DefensePrompt injection is the attack where untrusted text smuggles instructions into a model's context and overrides the system's intent. It comes in two flavors: direct, where the user types the attack, and indirect, where a poisoned document or tool output the model later reads carries it. You cannot fully prevent it, so a competent FDE designs the system so that a successful injection cannot reach anything that matters.
Advanced
🤖 Retrieval & Agents🔒 Premium
Agent MemoryAgent memory is how an agent carries state across turns and sessions. Short-term memory is the conversation and scratchpad living inside the context window, bounded and expensive. Long-term memory is an external store the agent writes to and retrieves from on demand, usually via RAG, so it can recall facts from last week without holding them in the prompt. FDE loops probe this because the hard parts, summarization, what to persist, and stale or contradictory memory, are where agents quietly break.