# AI & LLM Glossary

Clear, practical definitions of AI concepts, from context windows to agentic memory. Built for engineering and product teams working with LLMs.

For the argument rather than the definitions, read [the memory problem](https://www.maximem.ai/the-memory-problem).

ABCDEFGHIJKLMNOPQRSTUVWXYZ

AllAgentsArchitectureComplianceData EngineeringEconomicsEnterprise AIEvalsInfrastructureKnowledge SystemsLLM FundamentalsMemory & ContextObservabilityPersonalizationReasoningSafety

Showing 145 of 145 terms

## A

[

### Adherence (Instruction Adherence)

Measuring how well AI systems follow the specific instructions and constraints provided by users

EvalsSafety

](https://www.maximem.ai/glossary/adherence)[

### Agent Observability

Monitoring and tracking what autonomous AI agents are doing in real-time across distributed systems.

Enterprise AIObservability

](https://www.maximem.ai/glossary/agent-observability)[

### Agent Skills

Folders of markdown instructions an agent loads on demand to change how it performs a task, rather than what it knows.

AgentsKnowledge Systems

](https://www.maximem.ai/glossary/agent-skills)[

### Agentic AI

AI systems that plan, call tools, evaluate the results, and decide what to do next, rather than producing a single response and stopping.

AgentsLLM Fundamentals

](https://www.maximem.ai/glossary/agentic-ai)[

### Agentic Memory System

A comprehensive memory framework for AI agents that maintains episodic, semantic, and procedural memory to enable learning and continuous improvement.

Memory & ContextAgents

](https://www.maximem.ai/glossary/agentic-memory-system)[

### AI Access Control

Systems determining who can use AI models, which data they can access, and what they're allowed to do.

Enterprise AICompliance

](https://www.maximem.ai/glossary/ai-access-control)[

### AI Agent

An autonomous system that perceives its environment, makes decisions, and takes actions to achieve specific goals without direct human intervention.

AgentsEnterprise AI

](https://www.maximem.ai/glossary/ai-agent)[

### AI Auditability

The ability to create a complete record of what an AI system did, why it did it, and what inputs influenced its outputs.

Enterprise AICompliance

](https://www.maximem.ai/glossary/ai-auditability)[

### AI Bias

Systematic skew in model outputs that favors or disadvantages certain groups or answers, caused by patterns in training data, context, or system design.

SafetyCompliance

](https://www.maximem.ai/glossary/ai-bias)[

### AI Cost Model

The framework for understanding and predicting how much your AI system will cost to operate at different scales.

Enterprise AIEconomics

](https://www.maximem.ai/glossary/ai-cost-model)[

### AI Data Governance

Policies and systems controlling what data goes into AI models, how it's used, and who can access it.

Enterprise AICompliance

](https://www.maximem.ai/glossary/ai-data-governance)[

### AI Plugins

Packaged extensions that give an AI assistant new abilities at runtime, spanning the original ChatGPT plugins through to MCP servers, agent skills, and apps.

AgentsInfrastructure

](https://www.maximem.ai/glossary/ai-plugins)[

### AI Traceability

The technical capability to follow an input through every transformation until it produces output, showing what influenced the result.

Enterprise AIObservability

](https://www.maximem.ai/glossary/ai-traceability)[

### AI Vendor Lock-In Risk

The danger of becoming dependent on a specific AI provider's models or infrastructure, making it costly to switch.

Enterprise AIEconomics

](https://www.maximem.ai/glossary/ai-vendor-lock-in-risk)[

### Alignment

Ensuring AI systems behave in accordance with human values, goals, and constraints

SafetyEnterprise AI

](https://www.maximem.ai/glossary/alignment)[

### Alignment Evals

Testing whether AI system behavior aligns with specified goals, values, and constraints

EvalsSafety

](https://www.maximem.ai/glossary/alignment-evals)[

### API (Application Programming Interface)

A defined contract that lets one system call a specific function on another, with agreed inputs, outputs, and errors.

Infrastructure

](https://www.maximem.ai/glossary/api)[

### Attention Mechanism

The operation that lets a model weigh every token against every other token, deciding what in the input matters for predicting what comes next.

LLM Fundamentals

](https://www.maximem.ai/glossary/attention-mechanism)[

### Audit Log

Comprehensive records of AI system decisions, actions, and state changes for accountability and compliance

Enterprise AISafety

](https://www.maximem.ai/glossary/audit-log)[

### Autoresearch

Agents that run the research loop themselves, planning, searching, reading, synthesizing, and verifying until a question is actually answered

AgentsKnowledge Systems

](https://www.maximem.ai/glossary/autoresearch)

## B

[

### Backpropagation

The algorithm that computes how much each parameter contributed to a model error, by applying the chain rule backwards through the network.

LLM Fundamentals

](https://www.maximem.ai/glossary/backpropagation)[

### Behavioral Evals

Testing how AI systems behave under various conditions, focusing on consistency and patterns rather than single outputs

Evals

](https://www.maximem.ai/glossary/behavioral-evals)[

### Benchmark

A standardized public test set used to compare models against each other, which is a genuinely different job from evaluating whether your system works.

Evals

](https://www.maximem.ai/glossary/benchmark)

## C

[

### Chain-of-Thought (CoT)

A prompting technique that makes LLMs show their reasoning step-by-step, improving accuracy especially on complex reasoning tasks.

LLM FundamentalsReasoning

](https://www.maximem.ai/glossary/chain-of-thought)[

### Chunking

The process of dividing long documents into smaller pieces for RAG systems to store and retrieve efficiently.

Knowledge SystemsMemory & Context

](https://www.maximem.ai/glossary/chunking)[

### Code Agent

AI agents specialized in writing, analyzing, and executing code to solve problems programmatically

Agents

](https://www.maximem.ai/glossary/code-agent)[

### Compliance

Ensuring AI systems adhere to applicable laws, regulations, industry standards, and ethical guidelines.

ComplianceEnterprise AI

](https://www.maximem.ai/glossary/compliance)[

### Context Compression

Reducing the token size of context information while preserving critical details and meaning

Memory & Context

](https://www.maximem.ai/glossary/context-compression)[

### Context Engineering

The discipline of deciding what information goes into a model's context window, in what order, and in what form, drawn from a much larger pool of available information.

Memory & ContextLLM Fundamentals

](https://www.maximem.ai/glossary/context-engineering)[

### Context Eviction

Removing or deprioritizing old information from the AI's active context to make room for new data

Memory & Context

](https://www.maximem.ai/glossary/context-eviction)[

### Context Management

Strategically selecting what information an AI system should consider in each interaction

Memory & Context

](https://www.maximem.ai/glossary/context-management)[

### Context Retrieval

Fetching relevant past information or memories to include in current AI processing

Memory & Context

](https://www.maximem.ai/glossary/context-retrieval)[

### Context Rot

Degradation of memory quality and accuracy as stored context becomes outdated or semantically disconnected

Memory & Context

](https://www.maximem.ai/glossary/context-rot)[

### Context Window

The maximum amount of text an LLM can consider at once, measured in tokens.

LLM FundamentalsMemory & Context

](https://www.maximem.ai/glossary/context-window)[

### Coordination Protocol

The rules and standards enabling multiple AI agents to work together, share information, and synchronize actions.

AgentsArchitecture

](https://www.maximem.ai/glossary/coordination-protocol)[

### Cost-to-Completion

The total cost, in money or tokens, required to accomplish a task using AI, from initial attempt to satisfactory result.

EconomicsAgents

](https://www.maximem.ai/glossary/cost-to-completion)[

### Cross-Encoder Scoring

Using transformer models to score query-document pairs directly rather than encoding them separately

Knowledge Systems

](https://www.maximem.ai/glossary/cross-encoder-scoring)[

### Customization

Tailoring AI systems to specific organizational needs, preferences, and constraints without rebuilding from scratch.

Enterprise AI

](https://www.maximem.ai/glossary/customization)

## D

[

### Data Catalog

An inventory of the datasets an organization holds, recording what exists, who owns it, where it lives, and what it contains.

Data EngineeringKnowledge Systems

](https://www.maximem.ai/glossary/data-catalog)[

### Data Lineage

The record of where data came from and how it was transformed on the way to where it is now.

Data EngineeringCompliance

](https://www.maximem.ai/glossary/data-lineage)[

### Data Observability

Continuous monitoring of whether data is healthy right now: freshness, volume, schema drift, distribution shifts, and anomalies.

Data EngineeringObservability

](https://www.maximem.ai/glossary/data-observability)[

### Data Product

Data packaged with a contract: defined schema, named owner, service levels, access policy, and documentation, so consumers can depend on it.

Data EngineeringEnterprise AI

](https://www.maximem.ai/glossary/data-product)[

### Data Sovereignty (AI Context)

The principle that data, especially when used in AI systems, should remain under the control and jurisdiction of its origin country or organization.

ComplianceEnterprise AI

](https://www.maximem.ai/glossary/data-sovereignty-ai-context)[

### Dataset

A collection of raw or lightly processed data, defined by its contents rather than by any contract about quality, ownership, or support.

Data EngineeringLLM Fundamentals

](https://www.maximem.ai/glossary/dataset)[

### Delegation

Agents assigning subtasks to other agents or systems, breaking complex problems into manageable pieces

Agents

](https://www.maximem.ai/glossary/delegation)[

### Dense Retrieval

Using learned embeddings to retrieve information based on semantic similarity rather than keyword matching

Knowledge Systems

](https://www.maximem.ai/glossary/dense-retrieval)[

### Deployment

The process of taking a trained AI model or application from development into production where it serves real users.

Infrastructure

](https://www.maximem.ai/glossary/deployment)[

### Developer Agents

AI agents designed to autonomously write, test, debug, and optimize code, assisting software engineers in development tasks.

Agents

](https://www.maximem.ai/glossary/developer-agents)[

### Distributed Systems

Computing architectures where AI systems are spread across multiple machines or locations, enabling scale, reliability, and geographic distribution.

Infrastructure

](https://www.maximem.ai/glossary/distributed-systems)[

### Document Ranking

Sorting retrieved documents by relevance to the query using scoring or learning-to-rank models

Knowledge Systems

](https://www.maximem.ai/glossary/document-ranking)

## E

[

### Embedding Drift

Changes in embedding model output distributions or quality over time, degrading retrieval performance

Knowledge Systems

](https://www.maximem.ai/glossary/embedding-drift)[

### Embeddings

Numerical representations of text that capture semantic meaning, enabling AI systems to understand similarity and relationships.

LLM FundamentalsKnowledge Systems

](https://www.maximem.ai/glossary/embeddings)[

### Emergent Behaviors

Complex system behaviors that arise unexpectedly from simpler components interacting, not explicitly programmed

LLM FundamentalsSafety

](https://www.maximem.ai/glossary/emergent-behaviors)[

### End-to-End Eval

Evaluating complete AI system performance across entire workflows rather than isolated components

Evals

](https://www.maximem.ai/glossary/end-to-end-eval)[

### Enterprise Agents

AI agents deployed in organizations to autonomously execute business processes and complete multi-step tasks under organizational control.

Enterprise AIAgents

](https://www.maximem.ai/glossary/enterprise-agents)[

### Enterprise AI Stack

The complete set of components an enterprise organization needs to build, deploy, and manage AI systems in production.

Enterprise AIArchitecture

](https://www.maximem.ai/glossary/enterprise-ai-stack)[

### Enterprise Framing

How to position and communicate AI capabilities to enterprise organizations by emphasizing control, governance, and business value.

Enterprise AI

](https://www.maximem.ai/glossary/enterprise-framing)[

### Enterprise Governance

The organizational frameworks, policies, and oversight mechanisms that ensure AI systems are used appropriately and comply with requirements.

Enterprise AICompliance

](https://www.maximem.ai/glossary/enterprise-governance)[

### Enterprise Memory & AI Systems

Persistent memory infrastructure that lets AI systems learn from past interactions and deliver personalized, context-aware experiences at scale.

Enterprise AIMemory & Context

](https://www.maximem.ai/glossary/enterprise-memory-ai-systems)[

### Enterprise Metrics

The suite of quantitative measurements organizations use to assess whether AI systems are delivering business value and operating as intended.

Enterprise AIEvals

](https://www.maximem.ai/glossary/enterprise-metrics)[

### Enterprise Procurement

The organizational and contractual processes large companies use to evaluate, approve, and purchase AI systems and services.

Enterprise AI

](https://www.maximem.ai/glossary/enterprise-procurement)[

### Enterprise Workflows

Structured, automated processes within organizations that incorporate AI to automate decision-making, task routing, and multi-step operations.

Enterprise AIAgents

](https://www.maximem.ai/glossary/enterprise-workflows)[

### Episodic Memory (AI)

AI systems storing specific experiences and interactions in chronological context with sensory/contextual details

Memory & ContextAgents

](https://www.maximem.ai/glossary/episodic-memory-ai)[

### Evals (Evaluation Systems)

Systematic testing frameworks that measure AI system quality across multiple dimensions like accuracy, safety, and efficiency

Evals

](https://www.maximem.ai/glossary/evals)[

### Event Loop (Agent Runtime)

The core execution mechanism that cycles through agent decision-making, tool execution, and state updates

AgentsInfrastructure

](https://www.maximem.ai/glossary/event-loop)[

### Explainability

Making AI decisions and outputs interpretable to humans, showing why the system generated specific responses

SafetyEnterprise AI

](https://www.maximem.ai/glossary/explainability)

## F

[

### Failure Modes

Systematic ways AI systems malfunction or produce wrong outputs, including hallucinations, biases, and reasoning errors

SafetyAgents

](https://www.maximem.ai/glossary/failure-modes)[

### Feedback Loop (Agentic)

Mechanisms where AI agents observe outcomes of their actions and adjust subsequent behavior based on results

Agents

](https://www.maximem.ai/glossary/feedback-loop)[

### Fine-Tuning

Training a pre-trained LLM on domain-specific data to improve performance on specialized tasks without rebuilding from scratch.

LLM Fundamentals

](https://www.maximem.ai/glossary/fine-tuning)[

### Formal Verification

Mathematically proving that a system satisfies a specification for every possible input, rather than testing it on the inputs someone thought of.

SafetyCompliance

](https://www.maximem.ai/glossary/formal-verification)

## G

[

### Generative AI

AI that produces new artifacts (text, images, code, audio) in response to a prompt, rather than classifying or predicting from existing data.

LLM Fundamentals

](https://www.maximem.ai/glossary/generative-ai)[

### Governance

Systems and processes that establish rules, make decisions about how something should be run, and ensure compliance with those rules.

Compliance

](https://www.maximem.ai/glossary/governance)[

### Gradient Descent

The optimization algorithm behind nearly every modern AI model, nudging parameters downhill along the error surface one small step at a time.

LLM Fundamentals

](https://www.maximem.ai/glossary/gradient-descent)[

### Graph Engineering

Designing and maintaining the entity-and-relationship layer that AI systems traverse, covering schema, extraction, resolution, provenance, and pruning

Knowledge SystemsMemory & Context

](https://www.maximem.ai/glossary/graph-engineering)[

### Graph RAG

Using knowledge graphs to structure and retrieve information instead of flat vector databases

Knowledge Systems

](https://www.maximem.ai/glossary/graph-rag)[

### Groundedness Evals

Testing whether AI outputs are factually supported by source materials and not hallucinated

EvalsSafety

](https://www.maximem.ai/glossary/groundedness-evals)[

### Grounding

The property of a model output being verifiably tied to a trusted source, rather than generated from parametric memory alone.

SafetyKnowledge Systems

](https://www.maximem.ai/glossary/grounding)[

### Guardrails

Safety mechanisms that constrain AI output to acceptable ranges and prevent harmful or out-of-scope responses

Safety

](https://www.maximem.ai/glossary/guardrails)

## H

[

### Hallucination

When an LLM generates plausible-sounding but false, misleading, or fabricated information with high confidence.

LLM FundamentalsSafety

](https://www.maximem.ai/glossary/hallucination)[

### Hallucination Mitigation via Retrieval

Using external knowledge sources and retrieval-augmented generation to ground AI outputs in factual information

SafetyKnowledge Systems

](https://www.maximem.ai/glossary/hallucination-mitigation)[

### Hallucination Rate

Quantitative measurement of how often an AI system produces factually incorrect or unfounded outputs

EvalsSafety

](https://www.maximem.ai/glossary/hallucination-rate)[

### Harness

The code wrapped around a model, the loop, the tools, the context assembly, the permissions, and the verification, that turns raw inference into a working agent

AgentsInfrastructure

](https://www.maximem.ai/glossary/harness)[

### Harness Engineering

The discipline of designing, measuring, and tuning the scaffolding around a model, treating the agent loop as software rather than as a prompt

AgentsInfrastructure

](https://www.maximem.ai/glossary/harness-engineering)[

### Human-in-the-Loop (HITL)

Systems where humans and AI collaborate, with humans reviewing and correcting AI decisions to improve quality

SafetyEnterprise AI

](https://www.maximem.ai/glossary/human-in-the-loop)[

### Hybrid Search

Combining semantic similarity search with keyword/lexical matching for more robust information retrieval

Knowledge Systems

](https://www.maximem.ai/glossary/hybrid-search)

## I

[

### Inference

The process of running a trained model to generate outputs from input data, as opposed to training which creates the model.

LLM FundamentalsInfrastructure

](https://www.maximem.ai/glossary/inference)[

### Integrations

Connections between AI systems and external services, data sources, and business tools that enable the AI to access information and take actions.

Infrastructure

](https://www.maximem.ai/glossary/integrations)

## K

[

### Knowledge Graph

A structured representation of entities, relationships, and attributes that captures domain knowledge as interconnected nodes and edges.

Knowledge Systems

](https://www.maximem.ai/glossary/knowledge-graph)[

### Knowledge Storage

Infrastructure for persisting and organizing information that AI systems retrieve and reason about

Knowledge Systems

](https://www.maximem.ai/glossary/knowledge-storage)[

### Knowledge Systems

Infrastructure that stores, organizes, and retrieves structured and unstructured information to support AI reasoning and decision-making.

Knowledge Systems

](https://www.maximem.ai/glossary/knowledge-systems)[

### Knowledge Work

Jobs centered on creating, analyzing, and applying information rather than physical tasks

Enterprise AI

](https://www.maximem.ai/glossary/knowledge-work)[

### KV Cache

The stored attention keys and values from tokens a model has already processed, so it can generate each new token without recomputing the entire prompt.

LLM FundamentalsInfrastructure

](https://www.maximem.ai/glossary/kv-cache)

## L

[

### Latency Optimization

Reducing response time for AI systems through caching, batching, model optimization, and infrastructure tuning

Infrastructure

](https://www.maximem.ai/glossary/latency-optimization)[

### Lifecycle (Model Lifecycle)

The complete journey of an AI model from conception through development, testing, deployment, monitoring, retraining, and eventual retirement.

Enterprise AI

](https://www.maximem.ai/glossary/lifecycle-model-lifecycle)[

### LLM (Large Language Model)

A neural network trained on massive amounts of text data to predict and generate human-like text, often used as the reasoning engine for AI applications.

LLM Fundamentals

](https://www.maximem.ai/glossary/llm)[

### LLM-as-a-Judge

Using a language model to score another model output against a rubric, for the many qualities that have no automatic metric and too much volume for human graders.

Evals

](https://www.maximem.ai/glossary/llm-as-a-judge)[

### Long-Term Memory (AI)

Persistent storage of information that an AI system can access across sessions and conversations, enabling it to learn from and recall past interactions.

Memory & ContextAgents

](https://www.maximem.ai/glossary/long-term-memory)[

### LoRA (Low-Rank Adaptation)

A fine-tuning method that freezes the base model and trains a small pair of low-rank matrices per layer, cutting trainable parameters by orders of magnitude.

LLM FundamentalsInfrastructure

](https://www.maximem.ai/glossary/lora)[

### Loss Function

The single number a model is trained to minimize, which makes it the real specification of what the model is optimizing for.

LLM FundamentalsEvals

](https://www.maximem.ai/glossary/loss-function)

## M

[

### Maintenance

The ongoing operations and updates required to keep AI systems running effectively, including monitoring, bug fixes, updates, and performance optimization.

Enterprise AIInfrastructure

](https://www.maximem.ai/glossary/maintenance)[

### MCP (Model Context Protocol)

An open standard for exposing tools, data, and context to AI models, so any compliant model can discover and use any compliant integration.

InfrastructureAgents

](https://www.maximem.ai/glossary/mcp)[

### Mechanistic Interpretability

Reverse-engineering the internal computations of a neural network into human-readable algorithms, features, and circuits

SafetyLLM Fundamentals

](https://www.maximem.ai/glossary/mechanistic-interpretability)[

### Memory & Optimization

Strategies for managing and persisting information about users, interactions, and context to improve AI performance while maintaining efficiency and privacy.

Memory & Context

](https://www.maximem.ai/glossary/memory-optimization)[

### Memory & Personalization

Tailoring AI responses and memory retrieval based on individual user preferences, history, and behavior patterns

Memory & Context

](https://www.maximem.ai/glossary/memory-personalization)[

### Memory Consolidation

Processing and integrating new experiences into organized long-term memory structures for persistent learning

Memory & Context

](https://www.maximem.ai/glossary/memory-consolidation)[

### Model Routing

Systems that intelligently direct requests to different AI models based on criteria like cost, latency, accuracy, or specialization.

InfrastructureAgents

](https://www.maximem.ai/glossary/model-routing)[

### Multi-Agent Systems

Architectures where multiple AI agents work together, often with different roles or specializations, to solve complex problems collaboratively.

Agents

](https://www.maximem.ai/glossary/multi-agent-systems)[

### Multimodal AI

AI systems that can process multiple types of input (text, images, audio, video) and reason across them within a single model.

LLM Fundamentals

](https://www.maximem.ai/glossary/multimodal-ai)

## O

[

### Observability

Monitoring and understanding AI system behavior through logs, metrics, and traces to detect problems

Enterprise AIInfrastructure

](https://www.maximem.ai/glossary/observability)[

### Orchestration

Coordinating multiple AI models, tools, and systems to work together in complex workflows

AgentsInfrastructure

](https://www.maximem.ai/glossary/orchestration)[

### Orchestration Layer

The infrastructure that coordinates and manages multiple AI models, services, data sources, and tools within an AI system.

InfrastructureAgents

](https://www.maximem.ai/glossary/orchestration-layer)

## P

[

### Personalization Engine

Systems that customize AI outputs, recommendations, and experiences based on individual user preferences, behavior, and characteristics.

Memory & Context

](https://www.maximem.ai/glossary/personalization-engine)[

### Policy Engine

Systems that enforce organizational rules and constraints on AI behavior, including access control, content filtering, and decision approval.

ComplianceSafety

](https://www.maximem.ai/glossary/policy-engine)[

### Prompt Caching

Reusing a model provider stored attention state for a repeated prompt prefix, cutting latency and input cost on every request that shares it.

InfrastructureEconomics

](https://www.maximem.ai/glossary/prompt-caching)[

### Prompt Engineering

The practice of crafting specific input text (prompts) to guide LLMs toward producing desired outputs with improved quality and consistency.

LLM Fundamentals

](https://www.maximem.ai/glossary/prompt-engineering)[

### Prompt Injection

A security vulnerability where user input or untrusted data manipulates an AI model's behavior by injecting instructions into the prompt.

Safety

](https://www.maximem.ai/glossary/prompt-injection)[

### Prompt Template

Reusable prompt structures with placeholders that enable consistent, parameterized interactions with AI models across different inputs.

LLM Fundamentals

](https://www.maximem.ai/glossary/prompt-template)

## Q

[

### Quantization

Storing and computing model weights at lower numerical precision to cut memory and cost, trading a small amount of accuracy for a large amount of throughput.

InfrastructureEconomics

](https://www.maximem.ai/glossary/quantization)

## R

[

### RAG (Retrieval-Augmented Generation)

A technique that retrieves relevant information before generating responses, making LLMs more accurate and factual.

LLM FundamentalsKnowledge Systems

](https://www.maximem.ai/glossary/rag)[

### RAG Pipeline

The complete workflow of retrieving relevant documents or data and providing them to an AI model to ground its responses in external knowledge.

Knowledge Systems

](https://www.maximem.ai/glossary/rag-pipeline)[

### Rate Limiting

Mechanisms that restrict how frequently users or systems can call AI APIs or services to prevent overload, control costs, and ensure fair usage.

Infrastructure

](https://www.maximem.ai/glossary/rate-limiting)[

### Red Teaming

Adversarially attacking your own AI system to find the failures that ordinary testing and ordinary users will never surface.

SafetyEvals

](https://www.maximem.ai/glossary/red-teaming)[

### Reranking

Reordering search results using more sophisticated models or signals after initial retrieval

Knowledge Systems

](https://www.maximem.ai/glossary/reranking)[

### Retrieval Pipeline

The technical infrastructure that searches, ranks, and retrieves relevant information from knowledge bases or documents to support AI systems.

Knowledge Systems

](https://www.maximem.ai/glossary/retrieval-pipeline)[

### RLHF (Reinforcement Learning from Human Feedback)

The post-training stage that turns a raw next-token predictor into a usable assistant by optimizing against human preferences between outputs.

LLM FundamentalsSafety

](https://www.maximem.ai/glossary/rlhf)

## S

[

### Safety Filters

Systems that detect and prevent AI models from producing harmful, unethical, or inappropriate content before it reaches users.

Safety

](https://www.maximem.ai/glossary/safety-filters)[

### Sandboxing

Running agent-generated code and tool calls inside an isolated environment that has no more access than the specific task requires.

SafetyInfrastructure

](https://www.maximem.ai/glossary/sandboxing)[

### Semantic Layer

A shared definition layer that turns raw tables into consistent business concepts, metrics, and relationships that anyone can query.

Data EngineeringKnowledge Systems

](https://www.maximem.ai/glossary/semantic-layer)[

### Semantic Search

Search that understands meaning rather than matching keywords, retrieving results based on conceptual similarity rather than exact word matches.

Knowledge Systems

](https://www.maximem.ai/glossary/semantic-search)[

### Session Management

Systems that maintain and manage conversation context, user state, and history across multiple interactions with an AI system.

Memory & ContextInfrastructure

](https://www.maximem.ai/glossary/session-management)[

### SKILL.md

The markdown file at the heart of an Agent Skill: YAML frontmatter the agent always sees, and a body it loads only when it decides the skill applies.

AgentsKnowledge Systems

](https://www.maximem.ai/glossary/skill-md)[

### Sparse Retrieval

Retrieval methods that use explicit keywords and term matching to find relevant documents, contrasting with semantic similarity-based approaches.

Knowledge Systems

](https://www.maximem.ai/glossary/sparse-retrieval)[

### State Management (Agent)

Systems that track and maintain the current status, progress, and internal variables of AI agents as they work through multi-step tasks.

AgentsMemory & Context

](https://www.maximem.ai/glossary/state-management-agent)[

### Structured Output

Constraining AI model outputs to specific, machine-parseable formats (JSON, XML, etc.) instead of free-form text.

LLM Fundamentals

](https://www.maximem.ai/glossary/structured-output)[

### System Prompt

Initial instructions provided to an AI model that define its role, behavior, constraints, and how it should respond to users.

LLM Fundamentals

](https://www.maximem.ai/glossary/system-prompt)

## T

[

### Temperature (LLM)

A parameter controlling randomness in model outputs, from deterministic (0) to highly creative/random (1+), with different optimal values for different tasks.

LLM Fundamentals

](https://www.maximem.ai/glossary/temperature)[

### Token Budget

The total allocation of tokens (units of text cost) available for an AI system, used to constrain spending and optimize resource allocation.

LLM FundamentalsEconomics

](https://www.maximem.ai/glossary/token-budget)[

### Tokenization

The process of breaking text into small pieces (tokens) that LLMs process, where tokens are not always whole words.

LLM Fundamentals

](https://www.maximem.ai/glossary/tokenization)[

### Tool Use (Function Calling)

Enabling AI models to call external functions or APIs to access information and take actions

AgentsLLM Fundamentals

](https://www.maximem.ai/glossary/tool-use)[

### Transformer Architecture

The underlying neural network structure used by modern large language models, based on self-attention mechanisms for processing sequential data.

LLM Fundamentals

](https://www.maximem.ai/glossary/transformer-architecture)

## U

[

### User Profiling (AI)

The systematic collection and analysis of user data to understand preferences, behavior, and characteristics for personalization and targeting.

Memory & ContextPersonalization

](https://www.maximem.ai/glossary/user-profiling-ai)

## V

[

### Vector Database

A specialized database optimized for storing and searching high-dimensional numerical vectors based on similarity rather than exact matches.

Knowledge SystemsInfrastructure

](https://www.maximem.ai/glossary/vector-database)

## W

[

### Warm-Up (Model)

Pre-loading and initializing AI models before serving requests to reduce latency and improve response times for users.

Infrastructure

](https://www.maximem.ai/glossary/warm-up-model)[

### Workflow Automation

Using AI to automatically execute multi-step business processes, reducing manual work and enabling faster, more consistent operations.

Enterprise AIAgents

](https://www.maximem.ai/glossary/workflow-automation)

## Z

[

### Zero-Shot / Few-Shot Learning

Techniques where models perform tasks with no examples (zero-shot) or with only a few examples (few-shot) rather than extensive training.

LLM Fundamentals

](https://www.maximem.ai/glossary/zero-shot-few-shot-learning)

---

Source: [https://www.maximem.ai/glossary](https://www.maximem.ai/glossary)
