Guía de sección

Agent Runtime Foundations

Lee estos chapters en orden para conectar conceptos, patterns, labs y criterios de producción.

Orden de lectura

5 chapters
  1. 01
    Single Agent Pattern · Beginner 12-25 min pattern review Builder · Student

    A single agent receives a goal or message, consults its context, and produces an answer or action. This is the smallest useful unit in the catalog.

  2. 02
    Agent Loop Pattern · Beginner 12-25 min pattern review Builder · Student

    The agent loop turns a model call into an agent: observe state, decide the next action, act, evaluate the result, and stop when the goal is complete or a limit is reached.

  3. 03
    Goals and State Pattern · Beginner 12-25 min pattern review Builder · Student

    Goals define success; state records progress. Together they make agent work resumable, inspectable, and easier to evaluate.

  4. 04
    Tool Use Pattern · Beginner 12-25 min pattern review Builder · Student

    Tool use gives an agent controlled access to external capability such as calculators, search, databases, files, code execution, APIs, or business systems.

  5. 05
    Structured Output Pattern · Beginner 12-25 min pattern review Builder · Student

    Structured output constrains model responses to typed data that software can validate and consume.