Menu
InfoQ Architecture·March 25, 2026

Architecting Agentic Systems: Early Operating Models for Autonomous AI

This podcast explores the architectural implications of agentic systems, which are non-deterministic AI entities capable of planning, acting, and making decisions. It differentiates them from traditional automation and discusses the unique challenges in system design, security, and operations when integrating these autonomous agents into enterprise environments. The conversation emphasizes the need for new operating models, stronger observability, and human-in-the-loop controls.

Read original on InfoQ Architecture

Agentic Systems: A New Architectural Domain

The core premise is that agentic systems represent a fundamentally new architectural domain, distinct from traditional automation or even classic ML pipelines. Unlike deterministic software, agents observe signals, reason over context, call tools (APIs), and execute actions towards a goal in a non-deterministic manner. This introduces a novel design space with different assumptions about control, reliability, and system boundaries, demanding a re-evaluation of established architectural principles.

ℹ️

Key Distinction

Deterministic vs. Non-Deterministic: Traditional automation and ML systems are largely deterministic, meaning given the same input, they produce the same output. Agentic systems, by contrast, exhibit non-deterministic behavior, capable of dynamic decision-making and adapting their actions based on evolving context, which complicates traditional software engineering guarantees like idempotency and predictable side effects.

Distinguishing Truly Agentic Use Cases

An example of a truly agentic use case is an incident production response system. Here, anomalies trigger an LLM to make decisions, call APIs to gather system introspection, and orchestrate actions (e.g., taking a server offline) to achieve a goal. This involves dynamic decision-making and loop-back learning, where the system is not explicitly coded for every possible path but can decide and act. Non-agentic cases include deterministic chatbots or simple automation scripts that follow predefined rules.

New Security and Operational Challenges

  • Security Risks: Agentic workflows introduce new vulnerabilities like prompt injection, tool hijacking, and token-driven denial of service attacks. Because agents can orchestrate actions across multiple systems by calling APIs, a vulnerability can propagate beyond a single application boundary, increasing the blast radius.
  • Observability & Explainability: The non-deterministic nature necessitates stronger observability and explainability. It's crucial to understand why an agent made a particular decision or took a specific action, which is harder than debugging traditional code.
  • Human-in-the-Loop: Autonomous workflows require human-in-the-loop controls. This involves establishing clear decision boundaries and mechanisms for human oversight and intervention to manage risks and ensure alignment with organizational goals.
  • Centralized AI Platform: Scaling agentic systems in enterprises often benefits from a centralized AI platform. This platform can provide shared model access, RAG services, governance, identity controls, and unified observability, preventing fragmented implementations and ensuring operational consistency and cost control.

Architectural Principles Remain Key

While the technology and dominant patterns around agents will evolve rapidly, the underlying architectural principles (like how systems exchange information and orchestrate interactions) remain relevant. Architects and engineers must focus on defining clear boundaries, robust orchestration mechanisms, and adaptive system designs to manage the inherent unpredictability of autonomous agents.

Agentic AIAutonomous AgentsSystem ArchitectureObservabilitySecurityAI PlatformNon-deterministic SystemsOrchestration

Comments

Loading comments...