LLM (Large Language Model)
AI models trained on enormous amounts of text. They predict the next likely word. ChatGPT, Claude and Gemini are all LLMs.
On the list because: When people say "AI" in a product context, they almost always mean an LLM. You need to know the word.
Foundation model
A large, general AI model trained broadly that can be adapted to specific tasks. Claude, GPT, Gemini.
On the list because: Most companies build on top of a foundation model instead of training their own. That is a strategic dependency you need to be able to see.
Context window
How much text an AI model can hold in a single conversation. Measured in tokens.
On the list because: It sets the practical limits for what AI can do in your product. Bigger is not always better: models get worse at recalling details in very long context.
Token
The unit AI models work in. One token is roughly 0.75 English words.
On the list because: It is how AI is billed. Understand tokens and you can estimate costs. Fail to understand them and the bill arrives as a surprise.
Embedding
Text turned into numbers, a long list of coordinates that places the meaning of the text in a mathematical space.
On the list because: It is the engine behind intelligent search and the foundation of RAG. If your product needs to search your own documents meaningfully, you end up here.
RAG (Retrieval-Augmented Generation)
An architecture where the AI fetches relevant documents from your own knowledge base and uses them to answer. The AI "looks things up" before it answers.
On the list because: It is the most widespread way to get AI to answer from your specific data. Most internal AI assistants are built on RAG in some form.