FreeGridGlossary

AI definitions

Plain-English AI Terms for Builders and Students.

Use this glossary when a tutorial, FAQ, or provider page assumes vocabulary you have not learned yet. Each definition links back to a practical FreeGrid guide.

Last updated May 21, 2026. Free tiers, model access, and dataset terms can change; verify official sources before launch.

LLM API

A hosted service that lets your app send prompts to a language model and receive generated text or structured output.

Compare LLM APIs

Embedding

A vector representation that lets software compare meaning, not only exact keywords.

Compare embeddings

RAG

Retrieval-augmented generation: retrieve relevant source chunks first, then generate an answer grounded in those chunks.

Build RAG

Vector database

A storage and search system for embeddings, metadata, and similarity queries.

Compare vector DBs

Reranker

A model that reorders retrieved chunks so the answer model sees the most relevant evidence first.

RAG model guide

Context window

The amount of text or tokens a model can consider at once. Larger context helps, but better retrieval still matters.

Use context wisely

Token

A piece of text used for model input and output accounting. Token count affects cost, latency, and context limits.

Estimate cost

Rate limit

A provider rule that caps requests, tokens, or usage over time. Good apps handle limits with retries and fallback UX.

Rate-limit guide

AI agent

A workflow where a model plans or decides steps and calls tools under constraints, logs, and approvals.

Agent stack

OCR

Optical character recognition extracts text from scanned documents or images before search, RAG, or analysis.

OCR alternatives

Fine-tuning

Training a model further on task-specific examples. It is useful sometimes, but many projects should improve retrieval and prompts first.

Model selection

Local LLM

A language model running on your own computer or server instead of a hosted API.

Local vs API

Study path

Learn the terms in build order.

Start with API, model, token, and latency. Then learn embeddings, vector databases, RAG, reranking, and evaluation. After that, compare local deployment, fine-tuning, observability, and cost controls.

Recommended order

  1. LLM API, prompt, token, latency
  2. Dataset, license, schema, citation
  3. Embedding, vector database, semantic search
  4. RAG, reranking, citation, evaluation
  5. Local model, fallback, observability

People also ask

Glossary questions.

What AI term should beginners learn first?

Start with API, model, prompt, token, and latency. Those terms appear in almost every AI project decision.

What is the difference between search and RAG?

Search retrieves relevant information. RAG uses retrieved information as context so a model can generate an answer with sources.

What is the difference between embeddings and fine-tuning?

Embeddings help retrieve similar information. Fine-tuning changes model behavior with training examples. Many RAG projects need better embeddings before they need fine-tuning.