179 questions
No questions match those filters.
What's the difference between reactive and proactive ag...
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansA reactive agent only moves when triggered — it sits idle until a message or event arrives, handles it, and goes back to waiting. A customer support agent that answers only when a user writes in is purely reactive: nothing happens without a prompt.
A proactive agent doesn’t wait. It runs on its own initiative, driven by a schedule, a standing goal, or a change it detects in whatever it’s monitoring, and acts without anyone asking first. A monitoring agent that notices server CPU climbing, scales resources up, and pings a Slack channel — all before anyone noticed the problem — is behaving proactively.
Most agents that actually ship are a mix of both: reactive to direct requests, but also running a background loop that watches for something worth acting on unprompted. Building the proactive half requires an always-on event loop or scheduler behind the agent, since there’s no incoming message to trigger it otherwise.