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.
On this page
BERT
NLPGoogle'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.
Chain of Thought (CoT)
NLPAsking 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.
Chatbot
NLPA 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.
Context Window
NLPThe 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.
Conversational AI
NLPAI 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.
Embeddings
NLPConverting 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.
Few-Shot Learning
NLPTeaching 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.
Grounding
NLPConnecting 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.
Hallucination
NLPWhen 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.
In-Context Learning
NLPAn 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.
Intent Classification
NLPTeaching 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.
Large Language Model (LLM)
NLPA 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.
Named Entity Recognition (NER)
NLPTeaching 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.
Natural Language Generation (NLG)
NLPAn 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.
Natural Language Processing (NLP)
NLPThe 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.
Natural Language Understanding (NLU)
NLPAn 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.
Prompt Engineering
NLPThe 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.
RAG (Retrieval-Augmented Generation)
NLPGiving 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.
Reasoning (AI Reasoning)
NLPAn 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.
Semantic Search
NLPA smarter search that understands what you mean, not just what you typed, so "car problems" finds results about "vehicle issues."
Search technology that understands the meaning and intent behind queries, not just keyword matches. Uses embeddings and vector similarity to find semantically related content.
Why it matters: Dramatically improves search quality for RAG systems, knowledge bases, and e-commerce, users find what they need, not just what they typed.
Sentiment Analysis
NLPTeaching 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.
System Prompt
NLPThe 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.
Temperature
NLPA 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.
Token
NLPThe 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.
Tokenization
NLPThe 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.
Word Embeddings
NLPRepresenting 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.
Zero-Shot Learning
NLPAn 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.
Other glossary hubs
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