The Year Agentic AI Got Real — and Hard
2025 is shaping up to be the year agentic AI crossed from research to production. Gartner reports that 34 percent of businesses now deploy AI agents, and by 2028, as much as 15 percent of daily work decisions may be made autonomously. A third of enterprise software applications are expected to include some form of agentic capability. Yet the promise hasn’t matched excitement, so far. “Most agentic AI projects right now are early stage experiments or proof of concepts that are mostly driven by hype,” said Anushree Verma, Senior Director Analyst, Gartner. “This can blind organizations to the real cost and complexity of deploying AI agents at scale, stalling projects from moving into production. The problem, as it turns out, may not be the intelligence of AI models that have the spotlight - it’s probably their cloud infrastructure too. Agentic AI introduces a new kind of workload: thousands or even millions of semi-autonomous processes that perceive, reason, act, and collaborate over time. They hold memory, context, and goals. These properties break most of the cloud architecture patterns we’ve spent two decades perfecting. To understand why so many agentic projects stall, and what might unblock them, I spoke with Matthew Gregory, founder and CEO of Autonomy, a new platform-as-a-service (PaaS) built entirely around the actor model. Matthew and his team have spent years exploring what it takes to run autonomous, distributed systems at production scale, and their perspective sheds light on how this next wave of AI products will be built. “Familiar cloud architecture patterns have actually become barriers,” Matthew told me. “Agentic products function differently than modern web apps, and they need tools designed for that difference.”The Rediscovery: Actors Fit Agents
The actor model isn’t new. Conceived in 1973, it’s an elegant pattern for managing concurrency — one that quietly powers some of today’s most demanding systems, including WhatsApp, Discord, and Databricks. In the actor model, the basic unit of computation isn’t a container or function, but an actor - a lightweight, independent entity that owns its own state, processes messages asynchronously, and communicates with others through message passing. Hundreds of thousands of actors can run in parallel inside a single process. They start in milliseconds, idle cheaply, and persist as long as they’re needed. For AI agents, modeling each one as a single actor is an almost perfect fit. Actors (agents) are:- Stateful: each actor remembers its identity, memories, context, and goals.
- Long-lived: actors can stay idle for long periods without wasting resources.
- Asynchronous: they yield gracefully while waiting for LLM completions or tool responses.
- Massively parallel: millions can coordinate and collaborate to support agentic patterns like sub-agents and orchestrated workflows.
- Built-in messaging: mailboxes and queues make secure communication natural.

