AI & ML Glossary

    50+ essential AI, machine learning, and LLM terms explained for developers. From embeddings to agentic AI.

    All
    Core AI
    Training
    Architecture
    Infrastructure
    Prompting
    Safety
    Data

    55 terms

    Agentic AI

    Architecture

    AI systems that can autonomously plan, use tools, and take actions to accomplish complex multi-step goals with minimal human intervention.

    Related:Tool UseReAct

    API Gateway

    Infrastructure

    A unified entry point that routes requests to multiple AI providers, handling authentication, rate limiting, and load balancing. Vincony is an API gateway.

    Related:Model RoutingFallback

    Attention Mechanism

    Architecture

    A component in neural networks that allows the model to focus on relevant parts of the input when generating each part of the output.

    Related:TransformerMulti-Head Attention

    Benchmark

    Core AI

    Standardized tests used to evaluate and compare AI model performance. Common benchmarks include MMLU, HumanEval, and MT-Bench.

    Related:Evaluation

    Chain-of-Thought (CoT)

    Prompting

    A prompting technique that encourages the model to break down complex reasoning into intermediate steps, improving accuracy on logical tasks.

    Related:Prompt EngineeringTree-of-Thought

    Chunking

    Data

    Splitting documents into smaller segments for processing by LLMs or storage in vector databases. Chunk size affects retrieval quality.

    Related:RAGEmbedding

    Content Filtering

    Safety

    Automated systems that detect and block harmful, toxic, or policy-violating content in AI inputs and outputs.

    Related:Guardrails

    Context Window

    Core AI

    The maximum number of tokens an LLM can process in a single request. GPT-4 Turbo supports 128K tokens; Claude 3 supports 200K.

    Related:Token

    Distillation

    Training

    Training a smaller, faster 'student' model to replicate the behavior of a larger 'teacher' model, achieving similar quality at lower cost.

    Related:Quantization

    DPO (Direct Preference Optimization)

    Training

    A simpler alternative to RLHF that directly optimizes language models from human preference data without needing a separate reward model.

    Related:RLHF

    Embedding

    Data

    A dense vector representation of text in a continuous vector space, where semantically similar texts are positioned closer together.

    Related:Vector DatabaseSemantic Search

    Evaluation (Evals)

    Core AI

    Systematic testing of AI model outputs against quality metrics including accuracy, helpfulness, safety, and task-specific criteria.

    Related:Benchmark

    Fallback / Failover

    Infrastructure

    Automatically switching to an alternative AI model or provider when the primary one is unavailable or returns errors.

    Related:Model Routing

    Few-Shot Learning

    Prompting

    Providing a small number of examples in the prompt to guide the model's output format and behavior without any fine-tuning.

    Related:Zero-Shot LearningPrompt Engineering

    Fine-Tuning

    Training

    The process of further training a pre-trained model on a specific dataset to adapt it for a particular task or domain.

    Related:LoRARAGTransfer Learning

    Grounding

    Safety

    Techniques to anchor AI outputs in verifiable facts, typically through RAG or tool use, reducing hallucinations.

    Related:HallucinationRAG

    Guardrails

    Safety

    Safety mechanisms that constrain AI outputs to prevent harmful, biased, or off-topic responses. Can be rule-based or model-based.

    Related:Content FilteringRed Teaming

    Hallucination

    Safety

    When an AI model generates plausible-sounding but factually incorrect or fabricated information not grounded in its training data or provided context.

    Related:GroundingRAG

    Inference

    Infrastructure

    The process of using a trained model to generate predictions or outputs from new input data. Inference speed and cost are key production concerns.

    Related:LatencyThroughput

    Jailbreaking

    Safety

    Techniques used to bypass an AI model's safety filters and alignment training to produce restricted or harmful outputs.

    Related:Prompt InjectionRed Teaming

    Large Language Model (LLM)

    Core AI

    A neural network trained on massive text datasets to understand and generate human-like language. Examples include GPT-4, Claude, and Llama.

    Related:TransformerFine-Tuning

    Latency

    Infrastructure

    The time delay between sending a request to an AI model and receiving the first token of the response. Critical for real-time applications.

    Related:InferenceTTFT

    LoRA (Low-Rank Adaptation)

    Training

    A parameter-efficient fine-tuning technique that trains small adapter layers instead of modifying all model weights, dramatically reducing compute requirements.

    Related:Fine-TuningQLoRA

    Mixture of Experts (MoE)

    Architecture

    A model architecture that uses multiple specialized sub-networks (experts) and a gating mechanism to route inputs to the most relevant experts, improving efficiency.

    Related:Transformer

    Model Routing

    Infrastructure

    Automatically selecting the optimal AI model for a given task based on complexity, cost, speed, or quality requirements.

    Related:FallbackLoad Balancing

    Multi-Agent System

    Architecture

    An architecture where multiple specialized AI agents collaborate to solve complex tasks, each handling a specific role or subtask.

    Related:Agentic AIOrchestration

    Multi-Head Attention

    Architecture

    An extension of attention that runs multiple attention operations in parallel, allowing the model to attend to information from different representation subspaces.

    Related:Attention Mechanism

    Multimodal AI

    Core AI

    AI models that can process and generate multiple types of data — text, images, audio, video — within a single model. Examples: GPT-4V, Gemini.

    Related:Vision Language Model

    Orchestration

    Architecture

    Managing and coordinating multiple AI models, agents, or pipeline steps to work together in a defined workflow.

    Related:Multi-Agent SystemPipeline

    Prompt Caching

    Infrastructure

    Storing and reusing processed prompt prefixes to reduce latency and cost for repeated or similar requests.

    Related:Latency

    Prompt Engineering

    Prompting

    The practice of designing and optimizing input prompts to elicit desired outputs from LLMs, including techniques like few-shot learning and chain-of-thought.

    Related:Chain-of-ThoughtFew-Shot LearningSystem Prompt

    Prompt Injection

    Safety

    A security attack where malicious instructions are hidden in user input to manipulate the AI model into ignoring its system prompt or performing unintended actions.

    Related:GuardrailsJailbreaking

    QLoRA

    Training

    A technique combining quantization with LoRA to enable fine-tuning of large models on consumer-grade GPUs with minimal memory.

    Related:LoRAQuantization

    Quantization

    Infrastructure

    Reducing model precision (e.g., from 32-bit to 4-bit) to decrease memory usage and increase inference speed with minimal quality loss.

    Related:QLoRA

    RAG (Retrieval-Augmented Generation)

    Architecture

    A technique that enhances LLM responses by first retrieving relevant documents from an external knowledge base and injecting them into the prompt context.

    Related:Vector DatabaseEmbeddingFine-Tuning

    Rate Limiting

    Infrastructure

    Controlling the number of API requests a user or application can make within a time period to prevent abuse and ensure fair usage.

    Related:API Gateway

    ReAct (Reasoning + Acting)

    Architecture

    A framework where AI models alternate between reasoning about a problem and taking actions (tool calls) to solve it iteratively.

    Related:Agentic AITool Use

    Red Teaming

    Safety

    Systematically testing AI systems by attempting to elicit harmful, biased, or incorrect outputs to identify vulnerabilities before deployment.

    Related:Guardrails

    RLHF (Reinforcement Learning from Human Feedback)

    Training

    A training technique where human preferences are used to create a reward model that guides the LLM toward more helpful and harmless outputs.

    Related:DPOFine-Tuning

    Semantic Search

    Data

    Search that understands the meaning and intent behind queries rather than relying on keyword matching, powered by embeddings.

    Related:EmbeddingVector Database

    Streaming

    Infrastructure

    Delivering AI model output token-by-token as it's generated, rather than waiting for the complete response. Improves perceived latency.

    Related:TTFTLatency

    System Prompt

    Prompting

    An initial instruction given to an LLM that defines its behavior, personality, and constraints for the entire conversation.

    Related:Prompt Engineering

    Temperature

    Core AI

    A parameter controlling the randomness of model outputs. Lower values (0.0-0.3) produce deterministic outputs; higher values (0.7-1.0) increase creativity.

    Related:Top-PSampling

    Throughput

    Infrastructure

    The number of tokens or requests a model can process per unit of time. Higher throughput reduces cost per query at scale.

    Related:Inference

    Token

    Core AI

    The basic unit of text processed by an LLM. A token can be a word, subword, or character depending on the tokenizer used.

    Related:TokenizerContext Window

    Tokenizer

    Core AI

    An algorithm that converts text into tokens (numbers) that a model can process. Common tokenizers include BPE (Byte-Pair Encoding) and SentencePiece.

    Related:Token

    Tool Use / Function Calling

    Architecture

    The ability of an LLM to invoke external functions, APIs, or tools to perform actions beyond text generation (e.g., web search, code execution).

    Related:Agentic AIReAct

    Top-P (Nucleus Sampling)

    Core AI

    A sampling method that considers only tokens whose cumulative probability exceeds a threshold P, balancing diversity and coherence.

    Related:Temperature

    Transfer Learning

    Training

    Using knowledge gained from training on one task to improve performance on a different but related task, the foundation of modern LLM usage.

    Related:Fine-Tuning

    Transformer

    Architecture

    A deep learning architecture using self-attention mechanisms that processes input data in parallel, forming the backbone of modern LLMs.

    Related:Attention MechanismLLM

    Tree-of-Thought (ToT)

    Prompting

    An advanced reasoning technique where the model explores multiple reasoning paths simultaneously and evaluates which leads to the best answer.

    Related:Chain-of-Thought

    TTFT (Time to First Token)

    Infrastructure

    The latency measurement from when a request is sent to when the first token of the response is generated. Key metric for streaming UX.

    Related:Latency

    Vector Database

    Data

    A specialized database optimized for storing and querying high-dimensional vector embeddings. Examples include Pinecone, Weaviate, and Qdrant.

    Related:EmbeddingRAG

    Vision Language Model (VLM)

    Core AI

    A model that combines visual understanding with language capabilities, able to analyze images and answer questions about them.

    Related:Multimodal AI

    Zero-Shot Learning

    Prompting

    Asking a model to perform a task without any examples, relying entirely on its pre-trained knowledge and the task description.

    Related:Few-Shot Learning