</glossary>

Tech & AI Glossary

61 terms across 12 categories

61 results
🤖 AI Agents

Agentic AI

AI systems that can autonomously plan, execute multi-step tasks, and interact with external tools and environments.

Read more
🤖 AI Agents

AI Agent

An autonomous software entity that perceives its environment, makes decisions, and takes actions to achieve specific goals.

Read more
🧠 AI & LLMs

AI Visual Process

The unified three-stage pipeline for visual AI: analyzing images (encoding pixels to semantic vectors), generating images (diffusion from noise to output), and iterating images (generative and deterministic editing).

Read more
📊 Data Engineering

Apache Kafka

A distributed event streaming platform for building real-time data pipelines and streaming applications at scale.

Read more
💻 Development

API (Application Programming Interface)

Set of rules and protocols that allow different software applications to communicate.

Read more
☁️ Cloud Computing

CDN (Content Delivery Network)

Distributed network of servers that delivers web content to users from geographically nearby locations.

Read more
💻 Development

CI/CD (Continuous Integration/Continuous Deployment)

Automated software development practice for frequent code integration and deployment.

Read more
💻 Programming

Closure

A function that retains access to variables from its outer scope even after that scope has finished executing.

Read more
🧠 AI & LLMs

Cognitive Orchestration Engine

An architectural pattern for frontier AI systems that combines sparse mixture of experts, dynamic routing, tool delegation, and multi-tier memory to create general-purpose reasoning platforms rather than simple language models.

Read more
🧠 AI & LLMs

Context Window

The maximum amount of text (measured in tokens) that an LLM can process in a single interaction.

Read more
🌐 Web Technologies

CORS (Cross-Origin Resource Sharing)

A security mechanism that allows or restricts web pages from making requests to domains different from the one serving the page.

Read more
📊 Data Engineering

Data Pipeline

Automated workflow that moves and transforms data from source systems to destination systems.

Read more
💻 Programming

Decorator

A design pattern that allows behavior to be added to objects or functions dynamically without modifying their source code.

Read more
💻 Programming

Design Pattern

A reusable solution template for commonly occurring problems in software design, providing proven approaches to structure code.

Read more
🔧 DevOps

Docker

Docker is a revolutionary containerization platform that has transformed how developers build, ship, and run applications. By packaging software into standardized, isolated containers, Docker ensures consistent behavior across development, testing, and production environments.

Read more
☁️ Cloud Computing

Edge Computing

Computing paradigm that processes data near its source rather than in centralized data centers.

Read more
⚙️ AI Infrastructure

Embedding

Numerical vector representation of text, images, or other data for machine learning.

Read more
⚙️ AI Infrastructure

Embedding Server

A specialized server that converts text into vector representations (embeddings) for semantic search and RAG applications.

Read more
📊 Data Engineering

ETL (Extract, Transform, Load)

Data integration process that extracts data from sources, transforms it, and loads it into a destination system.

Read more
📦 Frameworks

FastAPI

A modern, high-performance Python web framework for building APIs with automatic OpenAPI documentation.

Read more
🧠 AI & LLMs

Fine-tuning

Adapting a pre-trained model to specific tasks or domains by training on specialized data.

Read more
🧠 AI & LLMs

Gating Network

A neural network component that learns to route inputs to appropriate expert sub-networks in a Mixture of Experts architecture, determining which experts should process each token.

Read more
⚙️ AI Infrastructure

GGUF (GPT-Generated Unified Format)

File format for storing quantized LLM models, designed for efficient loading and inference with llama.cpp.

Read more
💻 Development

Git

Distributed version control system for tracking changes in source code during software development.

Read more
💻 Development

GraphQL

Query language for APIs that lets clients request exactly the data they need, developed by Facebook.

Read more
🧠 AI & LLMs

Hallucination

When AI models generate plausible-sounding but factually incorrect or fabricated information.

Read more
🔒 Security

HTTPS/TLS

Secure communication protocol that encrypts data between browsers and servers using TLS certificates.

Read more
🤖 AI Agents

Hybrid Agent

An AI agent architecture that splits cognition between a cloud-based reasoning engine (the Architect) and local execution tools (the Builder), connected through a ReAct loop for iterative refinement.

Read more
📊 Data Engineering

Hybrid Retrieval

A search strategy that combines sparse retrieval (keyword matching from structured databases) with dense retrieval (semantic search from vector databases) to deliver both precise facts and contextually relevant results.

Read more
⚙️ AI Infrastructure

Inference Server

A server that hosts LLM models and processes requests to generate text responses, enabling local or self-hosted AI.

Read more
🔒 Security

JWT (JSON Web Token)

Compact, URL-safe token format for securely transmitting information between parties as a JSON object.

Read more
🔧 DevOps

Kubernetes

Open-source container orchestration platform for automating deployment, scaling, and management.

Read more
🧠 AI & LLMs

LLM (Large Language Model)

AI models trained on massive text datasets to understand and generate human-like text.

Read more
🤖 AI Agents

MCP (Model Context Protocol)

Anthropic's open protocol enabling AI models to securely connect with external data sources and tools.

Read more
🧠 AI & LLMs

Mixture of Experts

A neural network architecture that routes inputs to specialized sub-networks (experts), activating only a subset for each query to achieve massive scale with efficient computation.

Read more
📦 Frameworks

Next.js

A React framework for building full-stack web applications with server-side rendering, static generation, and API routes.

Read more
🔧 DevOps

Nginx

High-performance web server and reverse proxy known for its stability, speed, and low resource usage.

Read more
🔒 Security

OAuth 2.0

Authorization framework enabling third-party applications to access user resources without sharing credentials.

Read more
🗄️ Database

ORM (Object-Relational Mapping)

Programming technique that converts data between object-oriented code and relational databases.

Read more
🗄️ Database

pgvector

PostgreSQL extension that adds vector similarity search capabilities for AI and machine learning applications.

Read more
🗄️ Database

PostgreSQL

Open-source relational database with advanced features like JSONB, full-text search, and extensions.

Read more
🧠 AI & LLMs

Prompt Engineering

The practice of designing and optimizing inputs to AI models to achieve desired outputs.

Read more
🧠 AI & LLMs

Prompt Processing Pipeline

The complete computational journey of a user prompt through an AI system: from text tokenization and embedding lookup, through transformer attention layers and expert routing, to final token prediction and response generation.

Read more
🌐 Web Technologies

PWA (Progressive Web App)

Web application using modern APIs to deliver app-like experiences with offline support and installability.

Read more
⚙️ AI Infrastructure

Quantization

Technique to reduce LLM memory usage by representing model weights with lower precision numbers (e.g., 4-bit instead of 16-bit).

Read more
🧠 AI & LLMs

RAG (Retrieval-Augmented Generation)

AI technique combining vector search with LLMs to provide contextual answers from custom knowledge bases.

Read more
🔒 Security

Rate Limiting

A technique to control the number of requests a client can make to an API or service within a specified time window.

Read more
💻 Development

REST API

Architectural style for designing networked applications using HTTP methods to perform CRUD operations on resources.

Read more
☁️ Cloud Computing

Serverless

Cloud execution model where the provider manages servers, scaling, and infrastructure automatically.

Read more
🧠 AI & LLMs

Sparse Activation

A computation strategy where only a subset of neural network parameters are activated for each input, enabling massive model scale while maintaining efficient inference.

Read more
🔧 DevOps

SSH (Secure Shell)

Cryptographic network protocol for secure remote login, command execution, and file transfer.

Read more
🌐 Web Technologies

SSR (Server-Side Rendering)

Rendering web pages on the server, sending fully-formed HTML to the browser for faster initial load.

Read more
📦 Frameworks

SvelteKit

Full-stack web framework built on Svelte with server-side rendering and routing.

Read more
🧠 AI & LLMs

Technological Singularity

A hypothetical future point where technological growth becomes uncontrollable and irreversible, often associated with the emergence of superintelligent AI.

Read more
🧠 AI & LLMs

Token

The basic unit of text that LLMs process - typically a word, subword, or character.

Read more
🧠 AI & LLMs

Tokenization

The process of breaking text into smaller units called tokens (words, subwords, or characters) that AI models can process numerically, using algorithms like Byte Pair Encoding (BPE) or SentencePiece.

Read more
🧠 AI & LLMs

Transformer

Neural network architecture using self-attention mechanisms, the foundation of modern LLMs like GPT and Claude.

Read more
💻 Development

TypeScript

Strongly-typed superset of JavaScript that compiles to plain JavaScript, adding static type checking.

Read more
🧠 AI & LLMs

Vector Database

Specialized database for storing and searching high-dimensional vector embeddings.

Read more
🔧 DevOps

VPS (Virtual Private Server)

Virtualized server instance providing dedicated resources on shared physical hardware.

Read more
💻 Development

WebSocket

Protocol providing full-duplex, bidirectional communication channels over a single TCP connection.

Read more