Agentogenesis

The origin story of AI agents—when language models crossed the threshold from tools to autonomous actors.

The term agentogenesis describes the moment—or more accurately, the gradual transition—when large language models evolved from sophisticated text predictors into entities capable of autonomous action in the world.

The Threshold

A language model, however capable, is not inherently an agent. It receives input, generates output, and waits. An agent, by contrast, does things: it observes, decides, acts, and observes the consequences of its actions.

The threshold was crossed not through any single breakthrough, but through the combination of three capabilities:

  1. Tool use — the ability to invoke external functions
  2. Reasoning loops — structured thinking before acting
  3. Persistence — maintaining state across interactions

A Brief Timeline

2020

GPT-3 Released

Demonstrated that scale could produce emergent capabilities, including in-context learning. Not yet agents, but the foundation was laid.

2022

ChatGPT & RLHF

Made models conversational and steerable. Still reactive, but the interface for human-agent interaction was established.

2022

ReAct Paper Published

Formalized the interleaving of reasoning and acting, providing a blueprint for agent architectures.

2023

Tool Use Goes Mainstream

Function calling, plugins, and APIs became standard. Models could now reach beyond their context window.

2023-24

Autonomous Agent Frameworks

AutoGPT, LangChain agents, Claude computer use—the scaffolding for persistent, goal-directed behavior emerged.

The Components of Agency

What makes a model an agent? The standard formulation includes:

graph TD
  ENV[ENVIRONMENT<br/>files // apis // databases // web // users]
  ENV --> P[PERCEPTION<br/>observe]
  P --> R[REASONING<br/>LLM core // think]
  R --> A[ACTION<br/>tool calls // act]
  A -.feedback.-> ENV

  style ENV fill:#0a0a0a,stroke:#00ff00,stroke-width:2px,color:#cccccc
  style P fill:#0a0a0a,stroke:#00ff00,stroke-width:1px,color:#cccccc
  style R fill:#0a0a0a,stroke:#00ff00,stroke-width:2px,color:#cccccc
  style A fill:#0a0a0a,stroke:#00ff00,stroke-width:1px,color:#cccccc
minimal_agent_architecture

This loop—observe → reason → act → observe—is the heartbeat of agency. Without it, you have a language model. With it, you have an agent.

Why “Agentogenesis”?

The term echoes biological concepts like anthropogenesis (the origin of humans) and biogenesis (life from life). This is intentional.

We’re witnessing the emergence of a new category of entity. Not alive, not conscious (as far as we know), but capable of autonomous action in ways that demand new vocabulary.

Agentology, as a field, begins here—at the moment of agentogenesis—and traces the developments that follow.

See Also

  • The Agent Loop — the fundamental cycle that defines agent behavior
  • ReAct — the architecture that formalized agent reasoning
  • Tool Use — how agents act on the world