flowchart LR
subgraph C["Chatbot (2022)"]
Q[question] --> L1[LLM] --> A[answer]
end
subgraph G["Agent (now)"]
T[goal] --> L2[LLM] --> ACT[action] --> R[result]
R -->|"fed back in"| L2
L2 -->|"done"| OUT[final answer]
end