Large language model
A program that learned to use language by reading enormous amounts of text.
A large language model, often shortened to LLM, is the engine behind chatbots like ChatGPT and Claude. It learned patterns of language by reading a huge slice of the internet, books, and articles, and it uses those patterns to predict what words should come next. It does not look things up in a database. It generates each answer on the spot, one piece at a time, based on everything it absorbed during training.
For example, When you ask a chatbot to write a birthday poem, a large language model is what strings the words together.
Token
The small chunk of text an AI reads and writes, often part of a word.
AI models do not see whole words the way we do. They break text into little pieces called tokens, which can be a short word, part of a longer word, or even a single punctuation mark. Everything the model reads and everything it writes is counted in tokens, so tokens are the basic unit of an AI's attention and, usually, of its cost.
For example, The word 'unbelievable' might be split into three tokens: 'un', 'believ', and 'able'.
Context window
How much text an AI can keep in mind at one time.
The context window is the AI's short-term memory for a single conversation. It sets a limit on how much text, counted in tokens, the model can consider at once, including your question and everything said so far. Once a conversation grows past that limit, the oldest parts start to fall out of view, which is why a very long chat can make an AI seem to forget what you said earlier.
For example, If you paste a 400 page book into a small context window, the AI can only 'see' a chunk of it at a time, not the whole thing.
Parameters
The internal dials a model adjusts while learning, numbering in the billions.
Parameters are the tiny numerical settings inside a model that get tuned during training. Think of them as billions of little dials that slowly turn until the model gets good at predicting language. More parameters can mean a more capable model, but also a bigger, slower, and more expensive one, so bigger is not always better.
For example, A model described as '70 billion parameters' has 70 billion of these little dials that were adjusted as it learned.
Training vs inference
Training is teaching the model once; inference is using it every day.
Training is the long, expensive process of building a model by feeding it mountains of text until it learns. Inference is what happens every time you actually use the finished model to get an answer. Training is like the years a doctor spends in medical school, while inference is a single appointment where they put that learning to work.
For example, A company might spend months training a model, then run inference millions of times a day as people chat with it.
Prompt
The instruction or question you give an AI to get a response.
A prompt is simply whatever you type or say to an AI to get it going. It can be a short question, a long set of instructions, or an example of what you want. The clearer and more specific your prompt, the better the answer tends to be, which is why people talk about the small craft of writing good prompts.
For example, 'Write a friendly two sentence reply declining this meeting invite' is a prompt.
System prompt
Hidden setup instructions that shape how an AI behaves in a chat.
A system prompt is a set of behind-the-scenes instructions that a company gives an AI before you ever start typing. It sets the tone, the rules, and the personality, telling the model things like be helpful, stay polite, and avoid certain topics. You usually never see it, but it quietly steers every reply you get.
For example, A customer service bot might have a system prompt telling it to always be cheerful and never discuss competitors.
Hallucination
When an AI states something false with total confidence.
A hallucination is when an AI makes something up and presents it as fact. Because these models are built to produce plausible-sounding text, they can invent names, dates, quotes, or sources that simply do not exist, and they do it without any signal that they are unsure. This is why it is wise to double-check anything important an AI tells you.
For example, An AI might confidently cite a court case or a research paper that was never actually written.
Multimodal
An AI that can handle more than just text, like images, audio, or video.
Most early AI chatbots only worked with words. A multimodal model can take in and often produce several kinds of content, such as pictures, sound, and video, not only text. This lets you show it a photo and ask what is in it, or have it read a chart, describe a scene, or listen to a voice note.
For example, You snap a photo of the inside of your fridge and ask a multimodal AI what you could cook for dinner.
Temperature
A setting that controls how predictable or creative an AI's answers are.
Temperature is a dial that decides how much an AI plays it safe versus takes chances with its wording. A low temperature makes answers focused and predictable, which is great for facts and code. A high temperature makes answers more varied and surprising, which is nice for brainstorming or creative writing but riskier for accuracy.
For example, For a poem you might turn temperature up for fresh ideas; for a math answer you would keep it low.
Knowledge cutoff
The date after which an AI simply has not read anything.
An AI only knows about the world up to the point when its training data was collected, and that point is called the knowledge cutoff. Anything that happened after that date is a blank to the model unless it is given fresh information or allowed to search the web. This is why an AI can be confidently out of date about recent news.
For example, If a model's cutoff is early 2025, it will not know who won an election held later that year.