What is the difference between a chatbot and live chat?
Live chat is a website widget where a visitor types a message and a human employee replies in real time. The software routes the chat, shows typing indicators and keeps the transcript, but every answer is written by a person while they are logged in.
A chatbot is the same widget with software writing the replies. There are two very different kinds, and mixing them up causes most of the bad reputation chatbots have:
- Rule-based (scripted) bots follow a decision tree: press 1 for shipping, press 2 for returns. They cannot answer a question the author did not anticipate.
- AI chatbots using retrieval-augmented generation (RAG) look up the answer in the store's own products, pages and policies for every question, then write a reply from what they found. They can handle a question phrased in any way and in any language, and a well-built one says it does not know when nothing relevant exists. See what a RAG chatbot is for how that works.
So the real comparison for a store in 2026 is not chatbot versus human in the abstract. It is: which questions should software answer from your data, and which should a person handle?