<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Agentic AI, Explained on Jorge Laurel</title><link>https://jorgelaurel.com/book/</link><description>Recent content in Agentic AI, Explained on Jorge Laurel</description><generator>Hugo</generator><language>en-us</language><atom:link href="https://jorgelaurel.com/book/index.xml" rel="self" type="application/rss+xml"/><item><title>What Is AI, Really?</title><link>https://jorgelaurel.com/book/chapter-1/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://jorgelaurel.com/book/chapter-1/</guid><description>&lt;p&gt;&lt;strong&gt;A note on this series.&lt;/strong&gt; This is written for beginners, on purpose. I&amp;rsquo;m keeping explanations at a practical, conceptual level rather than a technical one. Several ideas here are described in generic terms rather than their full technical depth, most notably, I won&amp;rsquo;t be going into neural networks, the actual mathematical foundation that makes models like these possible. That&amp;rsquo;s a deep, worthwhile topic on its own, but it&amp;rsquo;s not where a novice needs to start. The goal of these seven lessons is to demystify AI agents enough that the hype becomes understandable, and, ideally, to spark enough curiosity that you go looking for the deeper technical material afterward.&lt;/p&gt;</description></item><item><title>From Chatbot to Agent</title><link>https://jorgelaurel.com/book/chapter-2/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://jorgelaurel.com/book/chapter-2/</guid><description>&lt;p&gt;In Lesson 1 I established what a language model does on its own. That leaves the term &amp;ldquo;AI agent&amp;rdquo; to explain, and why it&amp;rsquo;s replacing &amp;ldquo;chatbot&amp;rdquo; or &amp;ldquo;assistant&amp;rdquo; everywhere right now.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The boundary isn&amp;rsquo;t a hard line.&lt;/strong&gt; Real systems sit on a spectrum. A workflow can contain an LLM without being an agent, and a chat-based assistant can use tools without becoming a fully autonomous agent. The useful question isn&amp;rsquo;t &amp;ldquo;Is this definitely a chatbot or definitely an agent?&amp;rdquo; It&amp;rsquo;s &amp;ldquo;How much of the workflow does the system decide for itself, what tools can it use, and how much human control remains?&amp;rdquo;&lt;/p&gt;</description></item><item><title>The Building Blocks of an Agent</title><link>https://jorgelaurel.com/book/chapter-3/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://jorgelaurel.com/book/chapter-3/</guid><description>&lt;p&gt;Many modern LLM-based agents can be understood through four common building blocks: a model, tools, some form of state or memory, and instructions or goals. Not every agent needs all four in the same form, but this framework is a useful way to understand most of the systems you&amp;rsquo;ll encounter.&lt;/p&gt;
&lt;h3 id="1-the-model-the-brain"&gt;1. The model (the brain)&lt;/h3&gt;
&lt;p&gt;This is the LLM from Lesson 1: Claude, GPT, Gemini, or an open-weight model like Meta&amp;rsquo;s Llama or Alibaba&amp;rsquo;s Qwen. The model reads the current situation and decides what should happen next. It doesn&amp;rsquo;t execute anything itself. It predicts, and in an agent, part of what it predicts is which action to take.&lt;/p&gt;</description></item><item><title>How an Agent “Decides” What to Do</title><link>https://jorgelaurel.com/book/chapter-4/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://jorgelaurel.com/book/chapter-4/</guid><description>&lt;p&gt;Lesson 3 gave us the four building blocks: model, tools, memory, instructions. This lesson is about how they actually run together, because that mechanism is the real heart of &amp;ldquo;agentic AI.&amp;rdquo; It&amp;rsquo;s less magical than it sounds, and understanding it will make every agent product you encounter easier to evaluate.&lt;/p&gt;
&lt;h3 id="the-loop-think-act-observe-repeat"&gt;The loop: think, act, observe, repeat&lt;/h3&gt;
&lt;p&gt;A useful way to picture many agents is as a repeating cycle:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Decide.&lt;/strong&gt; The model looks at the goal and everything it knows so far, and decides what the next step should be.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Act.&lt;/strong&gt; If that step requires a tool, the agent calls it: a web search, a file read, an API request, or another available action.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Observe.&lt;/strong&gt; The result of that action comes back and gets added to what the model can see.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Repeat.&lt;/strong&gt; The model looks at the updated picture and decides what to do next, continuing until the goal is met, it reaches a limit, or it hands control back to a person.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Some systems follow this pattern closely; others use upfront planning, fixed workflows, parallel steps, or combinations of these approaches.&lt;/p&gt;</description></item><item><title>Tools and Function Calling</title><link>https://jorgelaurel.com/book/chapter-5/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://jorgelaurel.com/book/chapter-5/</guid><description>&lt;p&gt;Lesson 3 named tools as the agent&amp;rsquo;s hands. This lesson opens up how that actually works under the hood, because the mechanism, function calling, is one of the key pieces of engineering that lets language models move from generating text to operating software through external tools.&lt;/p&gt;
&lt;h3 id="the-basic-mechanism"&gt;The basic mechanism&lt;/h3&gt;
&lt;p&gt;A model can&amp;rsquo;t literally reach out and click a button or run code. What it can do is output text in a very specific, structured format that says, in effect, &amp;ldquo;call this function, with these parameters.&amp;rdquo; The software running around the model watches for that structured output, recognizes it as a tool request, executes the function (a real API call, a database query, a web search), and feeds the result back to the model as new text for it to keep reasoning over.&lt;/p&gt;</description></item><item><title>Agentic Systems, When Agents Work Together</title><link>https://jorgelaurel.com/book/chapter-6/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://jorgelaurel.com/book/chapter-6/</guid><description>&lt;p&gt;Everything so far has described a single agent: one model, running a loop, calling tools as needed. That&amp;rsquo;s plenty for a lot of tasks. For some complex agentic tasks in 2026, developers are also experimenting with multiple agents working together, and this lesson explains why and how that coordination happens.&lt;/p&gt;
&lt;h3 id="why-one-agent-isnt-always-enough"&gt;Why one agent isn&amp;rsquo;t always enough&lt;/h3&gt;
&lt;p&gt;A single agent trying to handle a complex, multi-part task, say, &amp;ldquo;research five competitors, compare their pricing, draft a report, and flag anything that needs legal review,&amp;rdquo; tends to run into the same problem a single overworked employee would. It has to hold too much context at once, and quality drops as the task grows. Splitting the work across specialized agents, one that researches, one that compares, one that writes, one that reviews for risk, mirrors how a human team would naturally divide labor.&lt;/p&gt;</description></item><item><title>Real Examples, Putting It All Together</title><link>https://jorgelaurel.com/book/chapter-7/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://jorgelaurel.com/book/chapter-7/</guid><description>&lt;p&gt;Six lessons in, I&amp;rsquo;ve covered the model, the chatbot-to-agent line, the four building blocks, the think-act-observe loop, tool calling, and multi-agent systems. This final lesson walks through three real-world-shaped examples, each one showing all of those pieces working together, without assuming you&amp;rsquo;ll ever write a line of code.&lt;/p&gt;
&lt;h3 id="example-1-a-scheduled-research-and-automation-workflow"&gt;Example 1: A scheduled research and automation workflow&lt;/h3&gt;
&lt;p&gt;Picture a system that runs every morning without anyone touching it: it checks a handful of news sources for stories on a specific topic, uses a model to summarize and rank what it finds, and writes the result somewhere useful, a document, a message, a dashboard.&lt;/p&gt;</description></item><item><title>Glossary &amp; Index</title><link>https://jorgelaurel.com/book/glossary/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://jorgelaurel.com/book/glossary/</guid><description>&lt;p&gt;Plain-language definitions of the recurring terms used throughout this book, in the same practical spirit as the chapters themselves.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A2A (Agent-to-Agent protocol)&lt;/strong&gt;&lt;br&gt;
A communication standard that lets independent agents, built by different companies or on different frameworks, hand off tasks and status to one another.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Agent (AI agent)&lt;/strong&gt;&lt;br&gt;
A software system that can pursue a goal by making decisions, interacting with its environment, and taking actions, often using a language model and external tools.&lt;/p&gt;</description></item></channel></rss>