Glossary

97 reference entries defining terms used in adult AI companion apps, generative image and video tools, and the models underneath them.

Age Verification

Platform, Safety & Policy

The process a platform uses to confirm a user meets a minimum age before granting access to adult content, ranging from a simple checkbox to document or biometric checks.

Read article →

AI Companion

Companions & Chat

An AI application built around an ongoing, personalized relationship with a persistent virtual character: the umbrella category that AI girlfriend, AI boyfriend, and general companion chatbot apps all fall under.

Read article →

AI Roleplay

Companions & Chat

A style of interacting with an AI (writing collaborative, in-character fiction turn by turn) rather than a product; it can happen inside a dedicated companion app or in a general-purpose chatbot.

Read article →

API

AI Foundations

A defined interface that lets one piece of software send requests to and get results back from another system, such as a hosted AI model, usually over the internet.

Read article →

Attention Mechanism

AI Foundations

A learned operation that weights which other tokens or features matter when updating the current representation.

Read article →

Base Model

AI Foundations

The underlying pretrained model from which chat variants, fine-tunes, adapters, and merges are derived.

Read article →

Character Card

Companions & Chat

A portable bundle of character instructions and metadata that character-chat frontends use to recreate a persona, scenario, greeting, and example dialogue.

Read article →

Character Chatbot

Companions & Chat

The general product type behind AI companions: a chat interface built around a persistent character persona, which may or may not be romantic: from an original companion to a fictional or public-figure-styled bot.

Read article →

Character Consistency

Image Generation

The goal of keeping a character’s face and appearance stable across many separate generations or video frames: a problem addressed by combining several techniques, not any single one.

Read article →

Character Memory

Companions & Chat

A companion app's user-facing feature for tracking details about you and your relationship with a specific character, built on top of the context window and/or longer-term storage.

Read article →

Chat Template

Companions & Chat

A model-specific formatting recipe that serializes roles and messages into the exact token sequence expected by a chat-tuned language model.

Read article →

Checkpoint

AI Foundations

A single saved file of a model's weights that generation software loads and runs: the concrete file, not the abstract concept of "weights" or a small add-on like a LoRA.

Read article →

CLIP

Image Generation

The model that converts text (and images) into the embeddings a diffusion model uses to understand and follow a prompt.

Read article →

Conditioning

AI Foundations

Information supplied to steer a generative model, such as text, a source image, mask, pose, depth map, reference embedding, or motion signal.

Read article →

Content Credentials (C2PA)

Platform, Safety & Policy

Cryptographically signed metadata, defined by the C2PA specification, recording a media file's creation and edit history: provenance information, not an AI detector.

Read article →

Content Moderation

Platform, Safety & Policy

A platform's overall process, policy, and staffing for reviewing, restricting, or removing content: the broad practice that tools like an NSFW filter are one part of.

Read article →

Context Window

Companions & Chat

The fixed amount of text, measured in tokens, a model can process in a single request: a hard technical ceiling on how much of a conversation it can see at once.

Read article →

ControlNet

Image Generation

Adds an extra structural input (an edge map, depth map, or pose skeleton) to a diffusion model so a generation’s composition can be controlled independently of the text prompt.

Read article →

Credits

Platform, Safety & Policy

A prepaid, spendable unit that hosted AI platforms use to meter usage instead of charging per generation in real currency.

Read article →

Cross-Attention

AI Foundations

An attention operation in which one representation queries information from another, commonly connecting prompt embeddings to an image denoiser.

Read article →

Deepfake

Platform, Safety & Policy

AI-manipulated media that depicts a real, identifiable person doing or saying something they didn't: narrower than synthetic media, which also covers entirely invented characters.

Read article →

Denoising Strength

Image Generation

An image-to-image control that sets how much noise is added to the starting latent and therefore how far the result may depart from the source image.

Read article →

Diffusion Model

AI Foundations

The general class of generative model that creates images, video, or audio by starting from random noise and iteratively removing it, step by step, until a coherent output remains.

Read article →

Diffusion Transformer (DiT)

AI Foundations

A diffusion or flow-model denoiser built from transformer blocks operating on image latents or patches instead of a conventional U-Net backbone.

Read article →

DreamBooth

Image Generation

A fine-tuning method that bakes a specific subject into a model's actual weights through further training, typically producing a new full or merged checkpoint: heavier and more permanent than a LoRA.

Read article →

Embedding

AI Foundations

A numerical vector that represents the meaning of a piece of text, image, or other input, letting a model compare or condition on things by similarity rather than exact matches.

Read article →

Face Swap

Image Generation

A face-synthesis or editing process that transfers a source identity into a target image or video while attempting to retain pose, expression, lighting, and scene context.

Read article →

Frame Interpolation

Video Generation

Fills in the frames between two existing frames, used to smooth motion or raise a clip’s frame rate rather than generate a new sequence from scratch.

Read article →

Generative AI

AI Foundations

The broad category of AI systems trained to create new text, images, video, or audio, rather than to classify or predict on data that already exists.

Read article →

GGUF

Local & Hosted AI

A single-file binary format from the llama.cpp/GGML project that packages a local model's weights and metadata together for fast loading: the common container for quantized local models, but not the same thing as quantization itself.

Read article →

GPU Inference

Local & Hosted AI

Running a trained model's forward computations on a graphics processor to exploit highly parallel matrix operations and fast device memory.

Read article →

Group Chat

Companions & Chat

A multi-character conversation mode that coordinates two or more AI personas in one shared chat context.

Read article →

Guidance Scale / CFG

Image Generation

The setting that controls how strongly generation follows the prompt, where higher values mean stricter prompt adherence but not necessarily better images.

Read article →

Hallucination

Companions & Chat

A known LLM failure mode in which a model confidently states something false, fabricated, or inconsistent with earlier facts, not a memory setting or a censorship issue.

Read article →

Hires Fix

Image Generation

A two-pass Stable Diffusion workflow that generates at a manageable resolution, upscales, then denoises the enlarged image to add coherent detail.

Read article →

Hosted Generation

Local & Hosted AI

Using an AI model that runs on a company's remote servers and is accessed through a website, app, or API, rather than on your own hardware.

Read article →

Image-to-Image

Image Generation

Regenerating an entire image guided by both a starting image and a prompt, at an adjustable strength that trades fidelity to the original for creative freedom.

Read article →

Image-to-Video

Video Generation

Turning a single still image into a short animated or video clip using a generative model.

Read article →

Inference

AI Foundations

The step where an already-trained model is run to produce an output, as distinct from training, the earlier process of teaching the model its parameters.

Read article →

Inference Steps

Image Generation

The number of denoising iterations a generation runs, where more isn't automatically better past a model-dependent point.

Read article →

Inpainting

Image Generation

Editing only a masked region of an existing image while the rest of the picture stays untouched.

Read article →

IP-Adapter

Image Generation

Conditions a generation on a reference image’s visual content or style through a lightweight image-encoder and dedicated cross-attention layers, without retraining the base model.

Read article →

Keyframe

Video Generation

An anchor frame (typically the first or last frame of a clip) that’s fully generated or specified, pinning down the video at a fixed point in time.

Read article →

KV Cache

Local & Hosted AI

A language-model inference cache that reuses attention keys and values from earlier tokens instead of recomputing the entire prefix for every new token.

Read article →

Large Language Model (LLM)

Companions & Chat

The underlying neural-network technology (trained to predict the next chunk of text) that powers character chatbots, AI companions, and most modern conversational AI.

Read article →

Latent Diffusion

AI Foundations

The specific, now-dominant diffusion technique that runs the noise-removal process inside a compressed latent space instead of on raw pixels, making generation far cheaper.

Read article →

Latent Space

AI Foundations

The compressed, lower-dimensional numerical space a model learns to represent complex data in, where similar items end up positioned near each other.

Read article →

Likeness Consent

Platform, Safety & Policy

Clear permission from an identifiable person to capture, transform, generate, or distribute their likeness for a defined purpose and context.

Read article →

Lip Sync

Video Generation

Matches a character’s mouth movements in a video to a specific audio track, whether generated speech, a cloned voice, or a separately recorded voiceover.

Read article →

Local Generation

Local & Hosted AI

Running an AI model for chat, images, or video entirely on your own device's hardware, instead of sending requests to a company's remote servers.

Read article →

Long-Term Memory

Companions & Chat

A mechanism for storing information outside the model's context window so it survives across sessions, rather than disappearing once a conversation exceeds the model's limit.

Read article →

LoRA

Image Generation

A small (typically a few MB to a few hundred MB) add-on file that adjusts a frozen base checkpoint toward a character, style, or concept, not a standalone model on its own.

Read article →

Model Card

AI Foundations

A document published with a trained model to report its intended uses, technical context, evaluation, limitations, and other release metadata.

Read article →

Model Distillation

AI Foundations

A training process in which a student model learns to reproduce selected behavior from a teacher model or more expensive generation process.

Read article →

Model Fine-Tuning

AI Foundations

The general activity of further-training an already-trained model on new data to specialize its behavior: the umbrella term covering specific methods like DreamBooth, LoRA, and Textual Inversion.

Read article →

Model Marketplace

Local & Hosted AI

A discovery and distribution platform for model repositories, checkpoints, adapters, and metadata, whether files are shared freely or under commercial access terms.

Read article →

Model Merge

AI Foundations

A method of combining parameters or learned adapters from compatible models to produce one model with a blended set of behaviors.

Read article →

Model Offloading

Local & Hosted AI

A memory-management technique that moves model components or caches between GPU memory, system RAM, and sometimes storage so oversized workloads can run.

Read article →

Model Weights

AI Foundations

The numerical parameters a neural network learned during training: the underlying data that gets packaged into a checkpoint file for a tool to load and run.

Read article →

Motion Control

Video Generation

The inputs (camera paths, motion-strength sliders, drawn trajectories) used to directly steer how a generated video moves, instead of leaving motion entirely up to the model.

Read article →

Multimodal AI

AI Foundations

An AI system that processes or produces more than one data modality (such as text, images, audio, or video) within a coordinated model or workflow.

Read article →

Negative Prompt

Image Generation

A separate field describing what to exclude from a generation, steering the model away from unwanted content or quality issues.

Read article →

NSFW Filter

Platform, Safety & Policy

An automated classifier or ruleset that flags or blocks sexually explicit content: one specific technical component used inside a platform's broader content moderation system.

Read article →

Numerical Precision

Local & Hosted AI

The number format and bit width used to store or compute model values, such as FP32, FP16, or BF16, with direct effects on memory, speed, and numerical range.

Read article →

Open-Weight Model

AI Foundations

A model whose trained weights are published for anyone to download and run on their own hardware, as opposed to a model only reachable through a company's hosted API.

Read article →

Outpainting

Image Generation

Extending an image beyond its original borders, generating new surrounding content rather than editing what's already there.

Read article →

Persona

Companions & Chat

The defined identity (name, personality traits, backstory, speech style) assigned to a chatbot so it consistently behaves as a specific character rather than a generic assistant.

Read article →

Prompt

AI Foundations

The text, image, or other input that tells a generative model what to produce or how to respond.

Read article →

Prompt Weighting

Image Generation

Syntax or controls that increase or decrease the relative influence of selected prompt fragments during conditioned generation.

Read article →

Quantization

Local & Hosted AI

Reducing the numerical precision a model's weights are stored in (e.g., 16-bit down to 4-bit) to shrink file size and compute needs: a general technique, distinct from any one file format.

Read article →

Rectified Flow

AI Foundations

A generative-model formulation that learns a velocity field for transporting noise toward data, ideally along paths that can be integrated efficiently during inference.

Read article →

Reference Image

Image Generation

Any image supplied as an input to steer a generation’s subject, style, or composition: the general concept behind IP-Adapter, image-to-image, and image-to-video.

Read article →

Retrieval-Augmented Generation (RAG)

Companions & Chat

A specific technique for feeding a model outside information at answer time (retrieving relevant stored text and inserting it into the prompt) commonly used to implement long-term memory and reduce hallucination.

Read article →

SafeTensors

Image Generation

A file format for storing model weights safely as an alternative to Python's pickle-based .ckpt/.pt files, independent of whether the weights inside are a base checkpoint, a fine-tune, or a LoRA.

Read article →

Sampler

Image Generation

The step-by-step algorithm (Euler, DPM++, etc.) that performs the actual denoising at each generation step.

Read article →

Scheduler

Image Generation

The setting that controls how noise levels are spaced across a generation's steps, which the sampler algorithm then follows.

Read article →

Seed

Image Generation

The number that initializes a generation's starting noise, which a user saves to reproduce the exact same result again.

Read article →

Synthetic Media

Platform, Safety & Policy

The broad umbrella term for any media wholly or partly generated or altered by AI, including entirely original characters that have no real-person basis at all.

Read article →

System Prompt

Companions & Chat

The hidden instructions sent to a language model before every conversation that implement a persona's behavior, rules, and boundaries under the hood.

Read article →

Temperature

Companions & Chat

A generation setting that controls how random or predictable a model's word choices are: low values give consistent, repetitive output, high values give more varied, sometimes erratic output.

Read article →

Temporal Consistency

Video Generation

How stable a subject’s appearance and geometry stay from one video frame to the next, as opposed to flickering, warping, or drifting over time.

Read article →

Text Encoder

AI Foundations

A model component that turns tokenized prompt text into numerical representations a generator can condition on.

Read article →

Text-to-Image

Image Generation

Generating a complete image directly from a written prompt, with no starting image involved.

Read article →

Text-to-Speech (TTS)

Companions & Chat

A speech-synthesis system that converts written dialogue into audio, often adding selectable voices to companion and character chats.

Read article →

Text-to-Video

Video Generation

Generates a video clip directly from a text prompt alone, with no starting image or existing footage involved.

Read article →

Textual Inversion

Image Generation

A technique that teaches a model a new word (a learned text embedding) tied to a concept from a handful of images, without touching any of the model's weights at all: the lightest-weight of the customization methods.

Read article →

Token

Companions & Chat

The basic chunk of text (roughly a word or word-piece) that a language model reads, generates, and is billed by; the unit that fills up a context window.

Read article →

Tokenizer

AI Foundations

A model-specific text-processing component that converts raw text into token IDs and converts generated IDs back into readable text.

Read article →

Training Data

AI Foundations

The examples used to adjust a model's learned parameters during pretraining, fine-tuning, or another training stage.

Read article →

Transformer

AI Foundations

A neural-network architecture that processes relationships among token-like inputs with attention, forming the backbone of most modern LLMs and many newer image generators.

Read article →

U-Net

AI Foundations

An encoder-decoder neural network with skip connections, widely used as the denoising backbone in Stable Diffusion 1.x and SDXL.

Read article →

Uncensored Model

Companions & Chat

A language model, usually open-weight, that has had its built-in refusal and safety training removed or never applied, so it will engage with content mainstream hosted models decline.

Read article →

Upscaling / Super-Resolution

Image Generation

Increasing an image's resolution using a model that generates plausible new detail, rather than simply stretching existing pixels.

Read article →

VAE

Image Generation

The component that encodes images into the compressed latent space a diffusion model uses, and decodes the result back into pixels.

Read article →

Video-to-Video

Video Generation

Transforms an existing video clip (restyling it, altering a subject, or replacing elements) while generally preserving its original motion and timing.

Read article →

VRAM

Local & Hosted AI

The memory attached to a graphics processor that holds model weights, activations, caches, and working data during GPU inference.

Read article →

Watermarking

Platform, Safety & Policy

Embedding a visible or invisible marker directly into generated media's pixels or audio to signal AI origin: a different, less structured mechanism than C2PA's signed metadata.

Read article →

No terms match your search.