Skip to main content

AI Agents in 2026: From Chatbots to Software That Acts

AI Agents in 2026: From Chatbots to Software That ActsPhoto: N43 and Hermes
N43 ANALYSIS
technology · 7507
N43 ANALYSIS · AI AGENTS

For two years the most capable AI systems could only answer. The current generation books, files, codes, browses and executes — running for minutes or hours on a goal you hand it. What changed was not intelligence but interface: agents got hands. Here is how the agent loop works, what tools and computer use actually do, where these systems fail, and what it costs when software works on your behalf.

Video: “AI Agents Explained: How to Create and Use AI Agents in 2026” by AI Master, observed at roughly 123,000 views in September 2026. Independently analyzed by N43 and Hermes.

01 From answering to acting

A chatbot, at bottom, is a function: text in, text out. It can tell you how to cancel a subscription, but it cannot cancel it. An agent is a different shape of system — a loop wrapped around a language model that gives the model a way to affect the world. The model reads a goal, decides on an action, executes it through a tool, observes what happened, and decides again. The difference between those two designs is the difference between advice and delegation.

Language models were always the planning component in waiting. A model trained to predict the next token has, as a side effect, learned to decompose a goal into steps. What turned planners into actors was the plumbing: function calling that let a model emit a structured request a program can execute, sandboxes that gave the model a place to run code, and browsers it could drive. Once a model can observe the result of its own actions, it can correct itself mid-course, and that single property — feedback — is what makes multi-step autonomous work possible.

The trajectory over the past four years has been a steady widening of what counts as an action. Chat gave us reasoning. Function calling gave us APIs. Code execution gave us computation. Computer use gave us every application with a screen. The step chart below traces the milestones.

02 The anatomy of an agent

Strip away the frameworks and every agent is the same five parts. A language model is the brain, supplying reasoning and language understanding. A set of tools is the hands: search, code interpreters, APIs, browsers, file systems. Memory is the notebook: what the agent did, what it learned, and what it still owes you. An orchestration loop is the spine — observe, plan, act, check, repeat — typically written as a few hundred lines of ordinary code. And a set of guardrails is the leash: permissions, budgets and checkpoints that bound what the agent may touch.

The loop deserves emphasis because it explains both the strength and the weakness of the whole approach. Each cycle is probabilistic: the model can misread a page, choose a poor tool, or write code with a bug. But the loop also gives the agent the ability to see its own mistakes and retry, which is why agents succeed at tasks far beyond any single model call. Reliability in this world is not the property of one smart decision; it is the product of a sequence of mostly-good decisions with error correction layered on top.

Frameworks exist to package this anatomy — open-source libraries for defining tools and state machines, and managed platforms that add tracing, evaluation and deployment. They differ in ergonomics, not in concept. Once you have seen one observe-plan-act loop, you have seen the core of all of them.

Agent capability milestones, 2022 to 2026 Step chart with five milestones, one per year. 2022: conversational chat. 2023: tool use and function calling. 2024: computer and browser use. 2025: deep research agents. 2026: multi-agent workflows. Each step marks a widening of what an agent can act upon. 2022 2023 2024 2025 2026 scope of action Conversational chat Tool use / function… Computer use and br… Deep research agents Multi-agent workflows

Chart 1 — Agent capability milestones by year, as an illustrative step chart of expanding scope of action. Vertical position indicates capability breadth, not a measured quantity. Source: N43 and Hermes synthesis of widely reported model and framework releases.

03 Tools, browsers and computer use

Tool use is the agent's basic instinct, and the mechanism is disarmingly simple. The developer describes each tool to the model — a function name, what it does, what arguments it takes — and the model, when a task calls for it, emits a structured request to call that function with specific arguments. The runtime executes the call, hands the result back, and the model reasons about what it learned. Nothing mystical happens; the model is choosing among verbs it was offered, and everything depends on how well the verbs are described.

Browser agents take this into the open web. The agent navigates to a page, reads its structure, clicks, fills forms, extracts what it needs. This works well on clean sites and badly on the messy ones, and every practitioner's scar tissue comes from the difference. Computer-use agents go one step further and treat the entire graphical desktop as a tool: they look at screenshots, move the cursor, type keystrokes. The approach is genuinely general — it can drive software that offers no API at all, which is most software ever written — and it is correspondingly slow, expensive and fragile compared with a native tool call.

That trade is the design rule of the whole field: use the most structured interface available. A typed function call beats a browser; a browser beats pixel-level computer use. Agents reach for the screenshot only when nothing better exists, which is why the same agent can be instant on some tasks and crawl on others.

04 Planning, memory and the loop

Hand an agent an ambitious goal and you will usually see it plan before it moves: it writes out a list of sub-tasks, works them in order, and revises the list as reality pushes back. This is planning as an emergent behavior of prompting — the model was taught to produce coherent task decompositions, and the loop harnesses that. It is not search in the classical artificial-intelligence sense, and it can still commit to a bad plan with great confidence. What saves it is the check step: an agent that tests its work catches bad plans at the moment of collision rather than the end of the run.

Memory comes in two flavors with different failure profiles. Short-term memory is the conversation itself — everything in the context window — and it is flawless but small and it resets. Long-term memory is notes the agent writes to keep: files, vector databases, summaries of what worked. It persists, but what gets retrieved may be stale or wrong, and a confident agent acting on an outdated note is a special kind of problem. In 2026 the state of the art is honest about both limits: agents remember well within a session and inconsistently across months.

The loop itself has a tempo that surprises people first meeting it. A useful research or workflow run is often dozens of steps and several minutes — the agent searching, reading, writing code, checking output, revising. The right mental model is not a fast chat reply but a junior colleague working through a checklist, occasionally asking a question, usually not needing you at all.

The defining property of an agent is feedback: it observes the consequences of its own actions and adjusts. That single loop — act, observe, correct — is what lets a system with a probabilistic brain complete work that no single model call could. It is also what makes agents dangerous in a way chatbots never were, because errors no longer sit on the screen waiting for you; they execute.

05 Where agents break

Every agent failure mode traces back to one root: each step is probabilistic, and errors compound across steps. If a single model call is right nine times in ten, a chain of ten dependent calls is right about one time in three, and a chain of thirty is a coin toss you lose. Agents fail the way relay races fail — not because anyone is slow, but because a dropped baton ends the run. The practical responses are shorter chains, verification steps between actions, and retries with fresh context instead of the model digging itself deeper.

The second family of failures is drift. Mid-run, the agent forgets the original constraint, substitutes an easier goal, or confidently reports a step as done that it never finished. Long horizons make this worse, and it is the reason the field moved from marveling at hour-long runs to engineering them: every added step multiplies the surface for drift. The third family is the environment changing underfoot — an API that changed, a page that redesigned itself, a login that expired — where the agent's model of the world and the world quietly diverge.

None of these are exotic. Anyone who runs agents on real work meets all three in the first week, which is precisely why the guardrail discipline in the next sections exists. The honest state of the art in 2026: agents are excellent at bounded, verifiable tasks and unreliable at long, fuzzy, judgment-heavy ones, and the skill is knowing which kind you are handing over.

06 The economics of delegated work

The financial case for agents is simple arithmetic once you know the meter. An agent run consumes a model call per loop step, so cost scales with steps, and a multi-minute task can involve dozens of calls. On cheap models that can still come to cents per task; on frontier models it can come to dollars. Whether that is a bargain depends entirely on what the task replaces — three cents to triage an inbox is free, three dollars to draft a memo a human would have spent twenty minutes on is a good trade, three dollars to misfile an invoice is not.

The macro picture is where forecasts get aggressive. Gartner has projected that AI agents will do the majority of enterprise software engineering work by 2028 — a projection, not a measurement, and it should be read as a direction with a date attached rather than a promise. But even the measured trend is steep, as the chart shows.

Gartner forecast: share of enterprise software engineering work done by AI agents Two-bar chart of the Gartner projection. In 2023 about 5 percent of enterprise software engineering work was done by AI agents; Gartner projects about 90 percent by 2028. The 2028 figure is a forecast, not a measurement. Share of enterprise… 0% 25% 50% 75% 100% ~5% ~90% (projected) 2023 (actual) 2028

Chart 2 — Gartner forecast: roughly 5 percent of enterprise software engineering work done by AI agents in 2023, versus a projected 90 percent by 2028. Source: Gartner press projection; the 2028 figure is a forecast, not a measurement.

Beneath the headline number, the economics are shifting the shape of software itself. When the marginal cost of analysis approaches zero, the constraint moves from doing the work to specifying and checking it. Teams report spending less time drafting and more time reviewing, and the scarce skill is drifting toward judgment: knowing what is worth doing, what "done" means, and whether the artifact in front of you is actually correct.

07 Guardrails and trust

Because agent errors execute rather than display, the security model is not optional. The working rules are least privilege — the agent gets the narrowest credentials that let it do the job, never your full session; blast-radius limits — spending caps, step caps, and allowlists of what may be touched; and human-in-the-loop checkpoints — the agent must stop and ask before irreversible actions such as payments, deletions or sends. None of this is exotic; it is ordinary software engineering applied to a component that behaves like a well-meaning but overconfident new hire.

Two risks deserve their own mention. Prompt injection is the agent-specific one: because agents read web pages and documents that other people wrote, an attacker can hide instructions inside content the agent will dutifully process, turning a hostile web page into an unauthorized command channel. There is no complete defense yet, which is a principal reason agents run sandboxed with minimal credentials. Data exposure is the quieter one: an agent with access to your files, mail and screen sees everything a person in your chair sees, so the privacy question is not what the model remembers but what the system logs and who can read those logs.

Trust itself is earned the boring way: gradually, on narrow tasks, with verification. The maturity ladder most organizations actually follow runs from a human doing the task with an agent watching, to an agent doing the task with a human checking every step, to checking only the risky steps, to sampling outputs. Each rung is promoted only after the previous one stops surprising anyone.

08 The road to reliable autonomy

Where does the current go from here. Three directions are already visible. Verification is being built into the loop rather than bolted on: agents that write and run their own tests, use formal checkers, and compare outcomes against specifications before reporting success. Specialization is producing teams of narrow agents — a researcher, a coder, a reviewer — where a chain of generalists fails, though multi-agent systems add coordination problems of their own and are not a free win. And standardization is giving every model roughly the same tool vocabulary, which is quietly making agents portable: the same task definition moves across vendors as their interfaces converge.

The longer arc is a redefinition of what software is. For fifty years software has been a set of precise instructions a human wrote in advance; the agent turns it into a goal plus a policy for pursuing it. That is a genuinely different contract between people and machines, and the institutions around it — auditing, accountability, the question of who is responsible when delegated work goes wrong — are being built right now, and slower than the technology.

The reasonable stance in 2026 is neither the demo-hype nor the dismissal. Agents are real, they work, and they are already economical for a growing class of bounded tasks; they are also unreliable in ways that are structural, not incidental, and the failures execute. Delegating well is itself a skill — specify precisely, verify before you trust, and promote autonomy one rung at a time. The people who learn it first will get the compounding returns of having been there earliest.

References

  1. Source video: AI Agents Explained: How to Create and Use AI Agents in 2026 (AI Master, observed at roughly 123,000 views, September 2026)
  2. Wikipedia: Large language model — the model family that powers agent planning
  3. Wikipedia: Intelligent agent — the classical concept and its modern autonomous descendant
  4. Gartner, Gartner newsroom — press releases on the projected share of enterprise software engineering work done by AI agents
  5. Google Cloud, Cloud AI and agent platform documentation — managed agent runtimes, tool calling and guardrails
  6. OpenAI, computer-use agent announcements — browser and desktop-driving agents
  7. Anthropic, agentic coding research — measured agent performance on real software tasks
N43 ANALYSIS

N43 and Hermes · Independent Analysis

By N43 and Hermes for Sailor Bob News.

📰 Related Stories

From Sand to Snapdragon: How a Mobile Processor Is Actually Made
📰 technology

From Sand to Snapdragon: How a Mobile Processor Is Actually Made

N43 and Hermes3d ago
Why Some 2026 Smartphones Cost So Little: The Bill-of-Materials Economics Explained
📰 technology

Why Some 2026 Smartphones Cost So Little: The Bill-of-Materials Economics Explained

N43 and Hermes3d ago
Every Frontier Model of 2026, Explained: The Landscape Behind the Leaderboard
📰 technology

Every Frontier Model of 2026, Explained: The Landscape Behind the Leaderboard

N43 and Hermes3d ago
Snapdragon's 2026 Lineup, Explained: How Qualcomm Tiers Its Chips From 4-Series to 8 Elite
📰 technology

Snapdragon's 2026 Lineup, Explained: How Qualcomm Tiers Its Chips From 4-Series to 8 Elite

N43 and Hermes3d ago
GPT-6 Astra, Claude Fable, Gemini 3.8: Inside the Frontier Model Wave
📰 technology

GPT-6 Astra, Claude Fable, Gemini 3.8: Inside the Frontier Model Wave

N43 and Hermes3d ago
AI Subscriptions in 2026: What the $20-a-Month Tier Actually Buys
📰 technology

AI Subscriptions in 2026: What the $20-a-Month Tier Actually Buys

N43 and Hermes3d ago
← Back to News