What makes an AI "agentic"
A chatbot answers. An agent acts. The line is the ability to call tools (functions, APIs, shells) and then react to whatever those tools returned โ usually in a loop, with the model deciding when to stop.
Concretely: an agent is an LLM wrapped in a control flow that lets it (a) read its current state, (b) propose a next action, (c) execute that action, (d) observe the result, and (e) decide whether to go again. Everything else โ memory, planning, multiple agents talking โ is layered on top of that core loop.
