1. Home
  2. Glossary
  3. Large language model (LLM)
AI glossary · Models & training

Large language model (LLM)

Large language model (LLM): A large language model (LLM) is a neural network trained on enormous amounts of text to predict the next word, then tuned to follow instructions and hold a conversation. LLMs power ChatGPT, Claude, Gemini, and Microsoft Copilot.

An LLM learns language by playing a single game billions of times: given some text, guess the next piece. Train on a large slice of the public internet, books, and code, and the model absorbs grammar, facts, writing styles, and a surprising amount of reasoning as a side effect of getting good at that game.

Raw next-word prediction does not make a helpful assistant, so vendors add a second phase. The model is trained on examples of good instructions and responses and adjusted with human feedback until it answers questions, follows formats, and declines harmful requests. That is the version you talk to.

Three practical facts follow from this. An LLM has a knowledge cutoff, so it may not know recent events unless it can search. It has no database of facts, so it can generate plausible falsehoods. And it works within a context window, so it can only consider a limited amount of text at once, which is why long conversations sometimes lose the thread.

Example at work

A paralegal pastes a 30-page deposition transcript into an LLM and asks for a timeline of events with page citations, a list of every date mentioned, and any inconsistencies between witnesses. She checks each citation against the transcript before it goes into the case file, and she uses only the firm's approved tool because the material is privileged.

Why it matters

Nearly every AI assistant you will use at work is an LLM with a different interface. Once you understand what one is (a very capable text predictor with a memory limit and no fact-checker) you can get strong results from any of them and know exactly what to verify.

Related terms