Reference
Agentic glossary
6 exam-critical terms in the Agentic category. See all categories →
Agent
AgenticAn LLM in a loop that decides its own next step until it judges the task done. Three properties: autonomy, tool use, action loop.
Agentic loop
AgenticSend messages → inspect stop_reason → if tool_use, execute + append tool_result → call again → if end_turn, done.
Subagent
AgenticA delegated worker LLM with its own context window and tool set. Returns only a summary to the caller. Does NOT inherit the caller's conversation history — pass context explicitly.
Coordinator
AgenticThe top-level agent in a hub-and-spoke multi-agent system. Plans, dispatches subagents, synthesizes. All communication routes through it — subagents never talk to each other directly.
Task tool
AgenticThe Agent SDK primitive for spawning a subagent. Emit multiple Task calls in a single response to spawn subagents in parallel and reduce round-trip latency.
Orchestrator-workers
AgenticPattern where a coordinator plans at runtime and dispatches worker subagents. Different from a workflow — the plan is decided by the model, not pre-written.