Glossary Hub · 27 terms

NLP & Language AI

Language models are the interface layer of modern AI. These terms cover how machines process text, why context windows and tokens matter to your invoice, and what techniques like RAG actually do.

BERT

NLP

Google's breakthrough AI model that reads sentences in both directions at once to understand context better.

Bidirectional Encoder Representations from Transformers, a language model Google introduced in 2018. Unlike earlier models that read text left to right, BERT reads an entire sentence in both directions at once, so it understands each word from the full surrounding context. It is pre-trained using masked language modeling, where random words are hidden and the model learns to predict them, then fine-tuned for specific tasks.

Why it matters: BERT reset the bar for language understanding and still underpins Google Search ranking and many production NLP systems. For teams, it means accurate sentiment analysis, classification, and question answering can be built by fine-tuning an existing model instead of training one from scratch.

Full definition: BERT →

Chain of Thought (CoT)

NLP

Asking an AI to "show its work" and think step-by-step, which makes it much better at solving math and logic problems.

A prompting technique where the model is guided to reason step-by-step before producing a final answer. Explicitly generating reasoning steps significantly improves accuracy on complex logic, math, and reasoning tasks.

Why it matters: Unlocks complex reasoning capabilities in LLMs without changing the model itself.

Full definition: Chain of Thought (CoT) →

Chatbot

NLP

A software application that simulates human conversation, from simple FAQ bots to sophisticated AI assistants.

A conversational interface powered by NLP that interacts with users through text or voice. Modern chatbots use LLMs for natural conversation; older ones relied on decision trees and intent matching.

Why it matters: The most deployed form of AI in customer-facing applications, but increasingly being replaced by agentic systems that can act, not just talk.

Full definition: Chatbot →

Context Window

NLP

The maximum amount of text an AI can read and consider at one time, like how many pages of notes it can hold in its head.

The maximum number of tokens (words/subwords) a language model can process in a single input-output cycle. GPT-4 has a 128K context window; Claude has 200K. Larger windows allow more information per interaction.

Why it matters: Directly limits how much data an agent can reason over, small windows mean agents need RAG or chunking strategies.

Full definition: Context Window →

Conversational AI

NLP

AI that can have natural back-and-forth conversations with humans, chatbots, voice assistants, and customer service bots.

AI systems designed for natural language dialogue with users. Combines NLU, dialogue management, and NLG to maintain multi-turn conversations. Includes chatbots, voice assistants, and interactive agents.

Why it matters: The most visible consumer application of AI, from Alexa to customer service bots handling millions of interactions.

Full definition: Conversational AI →

Embeddings

NLP

Converting words, images, or data into lists of numbers that capture their meaning, so similar things are mathematically close together.

Dense numerical vector representations of data (text, images, audio) in a continuous vector space. Similar items have similar embeddings. Used for search, recommendations, and as inputs to ML models.

Why it matters: The fundamental technology behind semantic search, RAG systems, and modern recommendation engines.

Full definition: Embeddings →

Few-Shot Learning

NLP

Teaching an AI to understand a new task by showing it just a handful of examples, like learning from 3 sample emails.

The ability of a model to learn a new task from only a small number of labeled examples, typically 2-10. In LLMs, this is achieved by including examples in the prompt rather than retraining.

Why it matters: Dramatically reduces the data and time needed to adapt AI to new tasks, critical for rapid prototyping.

Full definition: Few-Shot Learning →

Grounding

NLP

Connecting an AI's responses to real, verifiable facts, so it talks about reality instead of making things up.

The process of anchoring AI-generated outputs to factual, verifiable information sources. Techniques include RAG, citation, and fact-checking steps. The primary defense against hallucination.

Why it matters: Without grounding, generative AI is a confident liar. With it, it becomes a reliable research assistant.

Full definition: Grounding →

Hallucination

NLP

When an AI confidently states something that is completely made up, presenting fiction as fact with total certainty.

The generation of plausible-sounding but factually incorrect or nonsensical outputs by language models. Occurs because LLMs predict probable tokens, not verified facts. A major challenge for production AI.

Why it matters: The #1 trust barrier for enterprise AI adoption. Mitigation strategies (RAG, grounding, evals) are critical.

Full definition: Hallucination →

In-Context Learning

NLP

An AI learning a new task from the examples you include in your prompt, no retraining needed.

The ability of large language models to learn and adapt to new tasks simply from the examples and instructions provided in the prompt, without any weight updates or fine-tuning.

Why it matters: One of the most surprising emergent capabilities of large language models, learning without training.

Full definition: In-Context Learning →

Intent Classification

NLP

Teaching an AI to understand what a user wants from their message, is this a complaint, a question, a purchase request?

An NLP task that categorizes user input by the underlying intent or goal. Used to route requests to the appropriate handler in chatbots, IVR systems, and agent orchestration layers.

Why it matters: The first step in any conversational AI system, correctly identifying intent determines whether the user gets help or frustration.

Full definition: Intent Classification →

Large Language Model (LLM)

NLP

A massive AI trained on the internet's text that can understand and generate human language, GPT-4, Claude, Gemini, Llama.

Neural networks with billions of parameters trained on vast text corpora that can generate, analyze, and transform text. Foundation models like GPT-4, Claude 3, and Llama 3 power most modern AI applications.

Why it matters: The technology that triggered the current AI revolution, the engine behind agents, chatbots, and generative AI.

Full definition: Large Language Model (LLM) →

Named Entity Recognition (NER)

NLP

Teaching an AI to find and label important things in text, names, companies, dates, locations, dollar amounts.

An NLP task that finds and classifies named entities in text into predefined categories such as people, organizations, locations, dates, and monetary values. A NER system both locates the span of text and assigns it a label, so a sentence like 'Sophizo signed a deal in March' yields an organization and a date. Modern NER uses transformer models that judge each word from its surrounding context.

Why it matters: NER is the foundation of information extraction. It auto-populates CRM records from emails, pulls key terms and dates out of contracts, flags entities in news for monitoring, and structures messy text so downstream systems can act on it without manual data entry.

Full definition: Named Entity Recognition (NER) →

Natural Language Generation (NLG)

NLP

An AI's ability to write, producing human-readable text from data, templates, or learned patterns.

The subfield of NLP focused on producing coherent, contextually appropriate text from structured data, prompts, or learned patterns. Tasks range from templated report writing to open-ended generation. Early NLG used rule-based templates that filled in blanks; modern NLG is driven by transformer language models that generate fluent text one token at a time, conditioned on the input and the words already produced.

Why it matters: NLG automates writing at scale: drafting chatbot replies, turning dashboards into plain-English summaries, personalizing outbound messages, and generating product descriptions. The trade-off is oversight, since fluent output can still be factually wrong, which is why human review and guardrails matter.

Full definition: Natural Language Generation (NLG) →

Natural Language Processing (NLP)

NLP

The branch of AI focused on making computers understand, interpret, and generate human language.

A branch of AI focused on enabling computers to read, interpret, and generate human language. It spans tasks such as machine translation, summarization, sentiment analysis, named entity recognition, and question answering. Early NLP relied on hand-written rules and statistical methods; modern NLP is dominated by transformer-based models that learn language patterns from very large text datasets.

Why it matters: NLP is the layer underneath almost every text-based AI product, from chatbots and search engines to contract analysis and customer-feedback mining. For revenue teams, it is what turns unstructured emails, call transcripts, and notes into structured signals a system can act on.

Full definition: Natural Language Processing (NLP) →

Natural Language Understanding (NLU)

NLP

An AI's ability to read and comprehend, understanding the meaning, intent, and context behind human text.

The subfield of NLP focused on machine reading comprehension, extracting meaning, intent, entities, and relationships from text. Includes tasks like intent classification, entity recognition, and semantic parsing.

Why it matters: The foundation of every text-based AI application, if the system doesn't understand the input, nothing else works.

Full definition: Natural Language Understanding (NLU) →

Prompt Engineering

NLP

The art of writing instructions for AI models that get the best possible results, word choice and structure matter enormously.

The practice of designing and optimizing input prompts to elicit desired outputs from language models. Includes techniques like few-shot examples, role-playing, chain-of-thought, and structured formatting.

Why it matters: The most accessible AI skill, proper prompting can double or triple the quality of AI outputs without any technical changes.

Full definition: Prompt Engineering →

RAG (Retrieval-Augmented Generation)

NLP

Giving an AI access to a knowledge base it can search before answering, so it uses real data instead of guessing.

An architecture that enhances LLM outputs by first retrieving relevant documents from an external knowledge base, then including that context in the prompt. Combines the creativity of generation with the accuracy of retrieval.

Why it matters: The most important production AI pattern, reduces hallucination, keeps answers current, and grounds AI in your actual data.

Full definition: RAG (Retrieval-Augmented Generation) →

Reasoning (AI Reasoning)

NLP

An AI's ability to think logically, draw conclusions, and solve problems that require more than pattern matching.

The capability of AI models to perform logical deduction, causal inference, mathematical computation, and multi-step problem solving. Enhanced through techniques like chain-of-thought and self-consistency.

Why it matters: The frontier of AI capability, models that can reason well are dramatically more useful than those that can only pattern-match.

Full definition: Reasoning (AI Reasoning) →

Sentiment Analysis

NLP

Teaching an AI to read the emotional tone of text, is this review positive, negative, or neutral?

An NLP task that determines the emotional tone or opinion expressed in text. Classifies text as positive, negative, or neutral, often with fine-grained categories like joy, anger, or frustration.

Why it matters: Powers brand monitoring, customer feedback analysis, and real-time deal sentiment tracking in sales.

Full definition: Sentiment Analysis →

System Prompt

NLP

The hidden instructions that tell an AI how to behave, its personality, rules, role, and boundaries, before the user ever types anything.

A set of instructions provided to an LLM before user interaction that defines its behavior, role, tone, constraints, and capabilities. Acts as the agent's "constitution" that governs all interactions.

Why it matters: The most important and often most neglected part of any AI application, a bad system prompt makes everything worse.

Full definition: System Prompt →

Temperature

NLP

A dial that controls how creative or predictable an AI's responses are, low = focused and safe, high = wild and creative.

A parameter that controls the randomness of LLM outputs. Lower temperatures (0.0-0.3) produce more deterministic, focused outputs; higher temperatures (0.7-1.0) produce more diverse, creative responses.

Why it matters: Critical for tuning AI behavior, factual tasks need low temperature; creative tasks need higher temperature.

Full definition: Temperature →

Token

NLP

The basic unit of text that an AI processes, roughly a word or word-piece. "Artificial intelligence" is typically 2-3 tokens.

The fundamental unit of text processing in language models. Text is broken into tokens (words, subwords, or characters) before processing. Models have maximum token limits for input and output.

Why it matters: Understanding tokens is essential for managing AI costs, context window limits, and prompt design.

Full definition: Token →

Tokenization

NLP

The process of breaking text into small pieces (tokens) that an AI can process, like splitting a sentence into words and word-parts.

The process of converting raw text into a sequence of tokens for model processing. Different tokenizers (BPE, WordPiece, SentencePiece) produce different token sequences. Affects model performance and cost.

Why it matters: Determines how efficiently a model processes text, bad tokenization wastes context window space and increases costs.

Full definition: Tokenization →

Word Embeddings

NLP

Representing words as lists of numbers where similar words have similar numbers, "king" and "queen" are close together.

Dense vector representations of words in a continuous vector space where semantically similar words are mapped to nearby points. Early methods include Word2Vec and GloVe; modern approaches use contextual embeddings.

Why it matters: The foundation that made NLP work well, the idea that meaning can be captured as geometry in vector space.

Full definition: Word Embeddings →

Zero-Shot Learning

NLP

An AI that can perform a task it was never explicitly trained on, just by understanding the instruction in natural language.

The ability of a model to perform a task without having seen any examples of that specific task during training. The model generalizes from its pre-training knowledge to handle novel instructions.

Why it matters: The capability that makes LLMs feel magical, they can do things they were never specifically taught to do.

Full definition: Zero-Shot Learning →

Other glossary hubs

Machine Learning Fundamentals
The core vocabulary of machine learning, defined for revenue leaders rather than researchers. These are the concepts underneath every AI system your team evaluates: how models learn, why they fail, and what the jargon in a vendor deck actually means.
AI Model Training
How models are actually built and improved: pre-training, fine-tuning, alignment, and the trade-offs between them. Knowing this vocabulary is the difference between buying what a vendor says and knowing what they did.
AI Evaluation & Benchmarks
Before an AI system touches revenue, it has to be measured. These terms cover how AI systems are tested, scored, and certified as safe to deploy, and what the numbers in an eval report actually mean.
AI Agents & Agentic Systems
Agents are software that acts, not just answers. This is the vocabulary of agentic systems: how autonomous AI plans, uses tools, coordinates with other agents, and where accountability sits when it runs inside a revenue engine.
RevOps & GTM Metrics
The numbers a board actually reads. These terms cover the revenue metrics that decide whether growth compounds, how they are calculated honestly, and where teams most often flatter them.
Responsible AI & Governance
When AI touches customers or revenue, someone owns the risk. These terms cover the governance frameworks, failure modes, and compliance vocabulary your board and regulators already ask about.
AI Infrastructure
Every AI capability runs on infrastructure someone has to pay for. These terms explain what actually happens between a prompt and a response, and where the cost and latency live.
Data Engineering for AI
AI is downstream of data. These terms cover how data is moved, cleaned, stored, and served, and why most AI initiatives that fail actually fail here first.
Generative AI & Computer Vision
The models that create and the models that see. These terms cover generative systems (text, image, and multimodal) alongside the computer vision vocabulary that shows up in product and operations use cases.
Private Equity & AI Value Creation
How private equity thinks about AI: diligence, value creation, and the operating vocabulary deal teams use when AI moves from slideware to the investment memo.

From vocabulary to outcomes

Ready to put this vocabulary to work?

Knowing the terms is step one. Deploying them inside a revenue architecture that compounds is what Sophizo builds.

Book a Discovery Call