Simple Reflex Agent
Simple reflex: if percept then action. No memory of the past. Thermostat: if temp < 20 then heat. Vacuum: if dirt then suck else move. Fails when the right action depends on history (a maze).
Upgrade path — add internal state (model-based). Don’t call a huge LLM a simple reflex.
Simple Reflex Agent — output — heat off. No memory of yesterday.
sensors → agent → actuators
│
▼
environmentExam tip
Thermostat example + when it fails.