An Event is the most granular unit of action in your agent’s execution trace. Events represent atomic operations — like LLM calls, API requests, or tool invocations — that occur within a Step.If a Step is the macro decision (“go to a new site”), then an Event is the micro-action (“run an LLM call to decide the next URL”).
Step: Visit Stanford site├── Event: LLM call → "Which university website should I go to?"│ └── Result: "Stanford.edu"├── Event: Visit URL → "https://stanford.edu"└── Event: DOM scrape → "Extract list of faculty"
Each event gives you a breadcrumb trail of micro-decisions that led to the step’s result.