LOCAL_AI_STACK
LOCAL_AI_STACK / guides / local-ai-glossary
4 min readv2.2 · 2026-06-12
← back to guidesOfficial documentation reviewed with caveats

Local AI Glossary

Use this glossary when a guide mentions model size, quantization, context length, RAM, VRAM, embeddings, or RAG. The safest beginner rule is that every term depends on the exact model file, runtime, hardware, and app settings.

Core terms

TermPlain-English meaningWhy it matters
Local AIAn AI workflow where some or all processing happens on hardware you control.A local app can still call cloud services, so check the full workflow.
Local LLMA language model file running through a local runtime or app.The model may stay local, but tools, embeddings, updates, or web features can still use the network.
RuntimeSoftware that loads and runs model files.Ollama and llama.cpp-style backends are runtime examples; UI apps may use a runtime underneath.
Desktop appA graphical app for local AI workflows.A desktop app can be easier than a terminal, but privacy still depends on providers and settings.
Model fileThe downloaded weights used to generate responses.File size, format, license, and quantization affect what can run on your machine.
ParametersA rough size measure for a model, often written as 3B, 7B, 14B, or 70B.Larger models usually need more memory and storage. Bigger is not automatically better for a beginner setup.
QuantizationA way to store model weights with fewer bits, often shown as Q4, Q5, or Q8.Lower-bit quantization can reduce memory use, often with quality tradeoffs.
Context lengthHow much text the model can consider at once.Long context can use much more memory, especially during document chat.
RAMGeneral system memory.CPU-only and many app workflows use RAM, and the operating system needs some too.
VRAMDedicated GPU memory.GPU-accelerated local AI is often limited by dedicated VRAM, not just total system RAM.
Unified memoryApple Silicon memory shared by CPU, GPU, macOS, apps, and the model.It can help local AI, but it is not the same as dedicated GPU VRAM.

Document-chat terms

TermPlain-English meaningWhy it matters
EmbeddingsNumeric representations of text used for search and retrieval.If embeddings are created by a cloud provider, document text may leave your machine.
RAGRetrieval augmented generation: search documents first, then send relevant text to the model.RAG can help with PDFs, but it can still retrieve the wrong chunks or miss important context.
ChunkingSplitting documents into smaller pieces for retrieval.Bad chunking can make answers incomplete or misleading.
Vector databaseStorage used to search embeddings.It may be local or remote depending on the app and configuration.
OCROptical character recognition for scanned or image-heavy PDFs.A model cannot answer from text it never receives; scanned PDFs may need OCR first.
CitationA pointer to a retrieved document passage or source.Treat citations as pointers, not proof. Always check the original document.

Privacy and setup terms

TermPlain-English meaningWhy it matters
Local providerA model or embedding provider running on your machine.This is usually required for a local-only workflow.
Hosted providerA cloud API or remote model service.Prompts, files, or document chunks may leave your machine.
Local serverA service running on your computer, often at localhost.If exposed to the network, the risk profile changes.
TelemetryUsage or diagnostic data sent by an app.Review privacy settings before using sensitive files.
BenchmarkA measured performance result from a specific machine, model, and setup.Local AI Guide does not treat estimates as benchmark data.
CompatibilityWhether a setup works with a specific model, runtime, operating system, and hardware.Compatibility cannot be guaranteed from RAM or VRAM alone.

How to use the terms safely

  1. Start with the hardware terms: RAM, VRAM, unified memory, model size, quantization, and context length.
  2. Then check the workflow terms: runtime, app, local provider, hosted provider, embeddings, and RAG.
  3. Treat every estimate as setup guidance, not proof.
  4. Use a harmless first test file before sensitive document workflows.
  5. Check official documentation when a setting name, model catalog, or install command differs from a guide.

Sources

EVIDENCE
Official documentation reviewed with caveatsreviewed: 2026-05-24
Official documentation reviewed, with caveats
CAVEATS
·Local AI Guide has not independently installed, benchmarked, or audited this workflow.
·Follow official documentation for current commands, requirements, provider settings, and privacy boundaries.
Is Local AI Actually Private?Best Local LLM for 16GB RAM