Agentic AI MOOC Fall 2025 - video 11 - 1:58:21

LLM agent foundations

A model can answer a prompt, but an agent must decide what to do next, which tools to use, and when to stop.

agent looptoolsorchestration
LLM Agents Overview by Yann Dubois

Problem-first learning

The problem this lecture is trying to solve

A model can answer a prompt, but an agent must decide what to do next, which tools to use, and when to stop.

Lowest-level failure mode

The lowest-level failure is an ungrounded loop: observe, think, call tool, append context, repeat until context or budget collapses.

Frontier update

Modern production agents separate orchestration from specialist tools and use traces, guardrails, and evals from the start.

Transcript-grounded route

How the lecture unfolds

This is built from 2,294 caption segments. Use the timestamp buttons to jump into the original video when a term feels fuzzy.

0:02-19:46

Pass 1: That

The lecture segment repeatedly returns to that, will, what, data, just. Treat this part as the board-work for the mechanism, not as a definition list.

Write one line that connects the terms to the central failure mode: The lowest-level failure is an ungrounded loop: observe, think, call tool, append context, repeat until context or budget collapses.

19:46-39:32

Pass 2: That

The lecture segment repeatedly returns to that, data, might, will, basically. Treat this part as the board-work for the mechanism, not as a definition list.

Write one line that connects the terms to the central failure mode: The lowest-level failure is an ungrounded loop: observe, think, call tool, append context, repeat until context or budget collapses.

39:32-59:13

Pass 3: That

The lecture segment repeatedly returns to that, compute, what, more, data. Treat this part as the board-work for the mechanism, not as a definition list.

Write one line that connects the terms to the central failure mode: The lowest-level failure is an ungrounded loop: observe, think, call tool, append context, repeat until context or budget collapses.

59:13-1:18:55

Pass 4: That

The lecture segment repeatedly returns to that, basically, they, what, just. Treat this part as the board-work for the mechanism, not as a definition list.

Write one line that connects the terms to the central failure mode: The lowest-level failure is an ungrounded loop: observe, think, call tool, append context, repeat until context or budget collapses.

1:18:55-1:38:36

Pass 5: That

The lecture segment repeatedly returns to that, will, what, gpus, data. Treat this part as the board-work for the mechanism, not as a definition list.

Write one line that connects the terms to the central failure mode: The lowest-level failure is an ungrounded loop: observe, think, call tool, append context, repeat until context or budget collapses.

1:38:40-1:58:20

Pass 6: That

The lecture segment repeatedly returns to that, basically, every, will, memory. Treat this part as the board-work for the mechanism, not as a definition list.

Write one line that connects the terms to the central failure mode: The lowest-level failure is an ungrounded loop: observe, think, call tool, append context, repeat until context or budget collapses.

Build the mental model

What you should understand after this lecture

1. Start from the bottleneck

A model can answer a prompt, but an agent must decide what to do next, which tools to use, and when to stop. The lecture is useful because it does not treat this as a naming problem. It asks what breaks at the operational level and what design pattern removes that break.

2. Name the moving parts

The recurring vocabulary in the transcript is that, data, what, will, basically, just. When studying, do not memorize these as separate buzzwords. Ask what state is stored, what action is chosen, what feedback is observed, and what verifier decides whether progress happened.

3. Convert the idea into an architecture

Agent loop: state, policy, action, observation, memory, termination. Tool schemas are part of the model interface, not just backend code. Strong agents need task decomposition, state tracking, and evaluable end conditions. In exam or interview answers, this becomes a four-part answer: objective, loop, control boundary, evaluation.

4. Know the failure case

The lowest-level failure is an ungrounded loop: observe, think, call tool, append context, repeat until context or budget collapses. If you cannot say how the proposed system fails, the explanation is still shallow. Always include the failure it prevents and the new cost it introduces.

Concept weave

Ideas to remember

  1. Agent loop: state, policy, action, observation, memory, termination.
  2. Tool schemas are part of the model interface, not just backend code.
  3. Strong agents need task decomposition, state tracking, and evaluable end conditions.

Visual model

Agent system view

Use the graph to ask where the intelligence really lives: model, memory, tools, environment, verifier, or orchestration.

Written practice

Questions that make the idea stick

Drill 1Design a minimal research agent loop.
  1. State the user goal as an outcome.
  2. Define tools with narrow schemas.
  3. Add a stopping rule and final evidence check.
Drill 2When is a workflow better than an agent?
  1. Use a workflow when the path is known.
  2. Use an agent when the path depends on intermediate observations.
  3. Prefer the simpler system until dynamic control is necessary.

Written answer pattern

How to write this under pressure

ClaimLLM agent foundations solves a concrete control problem, not just a prompt-writing problem.
MechanismState the loop: observe state, choose action/tool, get feedback, update memory or plan, stop using a verifier.
Why it worksIt makes the hidden failure mode visible: The lowest-level failure is an ungrounded loop: observe, think, call tool, append context, repeat until context or budget collapses.
TradeoffExtra orchestration improves reliability only if evaluation, cost, and authority boundaries are explicit.

Build skill

How to apply this in your own agent

  1. Write the concrete task and the failure mode before choosing any framework.
  2. Choose the smallest architecture that handles the failure: workflow, single agent, orchestrator-worker, or evaluator loop.
  3. Define tool schemas, memory boundaries, and a success checker.
  4. Run a small eval set with failure labels, cost, latency, and trace review.

Source route

Original course links and readings

Page generated from 2,294 YouTube captions. Raw transcript files are kept out of the public site; this page publishes study notes, timestamp routes, and paraphrased explanations.