AI jargon, decoded
58 terms in plain language, each linked to the lesson that explains it in depth.
Agent
AgentsAn LLM running in a loop with tools, deciding its own steps to reach a goal.
Lesson 06 · What AI Agents Are →Agent harness
AgentsSoftware around a model that provides the agent loop, tools, memory, permissions, scheduling and interfaces — e.g. Hermes Agent, Claude Code.
Lesson 12 · Agent Harnesses: Hermes, Claude Code & More →AGI
FoundationsArtificial General Intelligence — a hypothetical AI matching humans across most tasks. Not needed to get business value today.
Lesson 01 · What AI Really Is →API
ToolsApplication Programming Interface — a way for software to talk to other software, e.g. sending prompts to a model programmatically.
Lesson 17 · Ollama API, Modelfiles & Integrations →API key
ToolsA secret token identifying your account to an API. Never paste keys into prompts or public files.
Lesson 22 · AI Safety, Privacy & Governance →Chunking
RAGSplitting documents into smaller passages before embedding them for retrieval.
Lesson 08 · Memory, Knowledge & RAG →Context window
FoundationsThe maximum amount of text (in tokens) a model can consider at once — its working memory.
Lesson 02 · How Large Language Models Work →Cosine similarity
RAGA measure of how similar two embedding vectors are; used to rank search results.
Lesson 08 · Memory, Knowledge & RAG →Deep learning
FoundationsMachine learning with large, many-layered neural networks. Powers modern vision, speech and language AI.
Lesson 01 · What AI Really Is →Embedding
RAGA list of numbers representing the meaning of text; similar meanings produce similar vectors.
Lesson 08 · Memory, Knowledge & RAG →Evals (evaluations)
PromptingTest sets used to measure whether an AI system gives correct, safe outputs — re-run after every change.
Lesson 05 · Advanced Prompting Techniques →Few-shot prompting
PromptingIncluding a few input→output examples in a prompt to demonstrate the desired behavior.
Lesson 05 · Advanced Prompting Techniques →Fine-tuning
FoundationsFurther training a model on your own examples to change its style or behavior. Usually not the first choice for adding knowledge.
Lesson 08 · Memory, Knowledge & RAG →Function calling
AgentsWhen a model outputs a structured request to run a named tool with arguments; your code executes it. Also called tool use.
Lesson 07 · Tools & Function Calling →Generative AI
FoundationsAI that creates new content: text, images, audio, video or code.
Lesson 01 · What AI Really Is →GGUF
Local AIA file format for quantized models used by llama.cpp, Ollama and LM Studio.
Lesson 15 · Why Run AI Locally (and What Hardware You Need) →Grounding
PromptingGiving the model source material and instructing it to answer only from it, reducing hallucination.
Lesson 02 · How Large Language Models Work →Guardrails
SafetyLimits and checks around AI behavior: permissions, step limits, validation, human approval.
Lesson 06 · What AI Agents Are →Hallucination
FoundationsA confident but false or fabricated model output.
Lesson 02 · How Large Language Models Work →Human-in-the-loop (HITL)
SafetyA design where a person reviews or approves AI outputs or actions before they take effect.
Lesson 14 · Build an AI Lead Workflow in n8n →Idempotency
AutomationA property where running the same step twice has the same effect as once — prevents duplicates when triggers repeat.
Lesson 13 · Workflow Automation Fundamentals →Inference
FoundationsUsing a trained model to generate outputs. What happens every time you send a prompt.
Lesson 02 · How Large Language Models Work →JSON
ToolsA simple text format for structured data. The standard way AI output is passed into automations.
Lesson 05 · Advanced Prompting Techniques →JSON Schema
ToolsA description of the exact structure JSON must follow; used for tool parameters and structured outputs.
Lesson 07 · Tools & Function Calling →LLM
FoundationsLarge Language Model — a neural network trained on huge amounts of text to predict the next token.
Lesson 02 · How Large Language Models Work →Local model
Local AIA model running on your own hardware, so data never leaves your machine.
Lesson 15 · Why Run AI Locally (and What Hardware You Need) →Machine learning
FoundationsSystems that learn patterns from data instead of following hand-written rules.
Lesson 01 · What AI Really Is →MCP
AgentsModel Context Protocol — the open standard for connecting AI apps to tools and data through reusable servers.
Lesson 11 · MCP: Connecting Agents to Everything →MCP server
AgentsA program that exposes tools, resources and prompts to MCP-compatible AI apps.
Lesson 11 · MCP: Connecting Agents to Everything →Modelfile
Local AIAn Ollama recipe combining a base model, system prompt and parameters into a named custom model.
Lesson 17 · Ollama API, Modelfiles & Integrations →Multi-agent system
AgentsSeveral agents with different roles or tools collaborating on a task.
Lesson 10 · Agent Design Patterns & Multi-Agent Systems →Multimodal
FoundationsModels that handle more than text — images, audio or video.
Lesson 01 · What AI Really Is →n8n
AutomationA fair-code workflow automation platform with native AI agent nodes; free to self-host.
Lesson 14 · Build an AI Lead Workflow in n8n →Ollama
Local AIA free tool to download and run open-weight models locally with one command and a local API.
Lesson 16 · Install & Master Ollama →Open WebUI
Local AIA self-hosted, multi-user ChatGPT-style interface for Ollama and other APIs.
Lesson 18 · Local AI Apps: Open WebUI, LM Studio & Private RAG →Open-weight model
Local AIA model whose weights are published so you can download and run it (Llama, Qwen, Gemma, Mistral, gpt-oss…).
Lesson 02 · How Large Language Models Work →OpenAI-compatible API
ToolsAn API that follows OpenAI's request format, so tools built for it work with other providers — including Ollama at /v1.
Lesson 17 · Ollama API, Modelfiles & Integrations →Orchestrator–workers
AgentsA pattern where a lead model splits a task and delegates sub-tasks to worker agents.
Lesson 10 · Agent Design Patterns & Multi-Agent Systems →Parameters
Local AIThe learned numbers inside a model; model size is measured in them (e.g. 8B = 8 billion).
Lesson 15 · Why Run AI Locally (and What Hardware You Need) →Prompt
PromptingThe instruction and input you give a model.
Lesson 04 · Prompt Engineering Fundamentals →Prompt chaining
PromptingSplitting a task into sequential prompts where each output feeds the next.
Lesson 05 · Advanced Prompting Techniques →Prompt injection
SafetyMalicious instructions hidden in content an AI reads, trying to hijack its behavior or tools.
Lesson 22 · AI Safety, Privacy & Governance →Quantization
Local AICompressing model weights (e.g. to 4-bit) so models need less memory, with small quality loss.
Lesson 15 · Why Run AI Locally (and What Hardware You Need) →RAG
RAGRetrieval-Augmented Generation — retrieving relevant documents and giving them to the model before it answers.
Lesson 08 · Memory, Knowledge & RAG →Re-ranking
RAGUsing a second model to reorder retrieved passages by relevance before generating an answer.
Lesson 08 · Memory, Knowledge & RAG →Reasoning model
FoundationsA model that spends extra tokens thinking step by step before answering; better at complex problems.
Lesson 02 · How Large Language Models Work →Routing
AgentsClassifying an input and sending it to a specialized prompt, model or workflow.
Lesson 10 · Agent Design Patterns & Multi-Agent Systems →Skill (agent skill)
AgentsA saved, reusable set of instructions an agent can load for a specific kind of task.
Lesson 12 · Agent Harnesses: Hermes, Claude Code & More →Structured output
PromptingModel output constrained to a defined format, typically JSON matching a schema.
Lesson 17 · Ollama API, Modelfiles & Integrations →System prompt
PromptingPersistent instructions that define a model's role, rules and behavior across a conversation.
Lesson 05 · Advanced Prompting Techniques →Temperature
FoundationsSetting that controls randomness. Low for facts and extraction; higher for creative work.
Lesson 02 · How Large Language Models Work →Token
FoundationsA chunk of text (~¾ of an English word). Models read, write and bill in tokens.
Lesson 02 · How Large Language Models Work →Tool
AgentsA function an agent can call — search, read a file, send a message, query a database.
Lesson 07 · Tools & Function Calling →Training cutoff
FoundationsThe date after which a model has no built-in knowledge.
Lesson 02 · How Large Language Models Work →Trigger
AutomationThe event that starts a workflow — a form submission, new email, schedule or webhook.
Lesson 13 · Workflow Automation Fundamentals →Vector database
RAGA database optimized to store embeddings and find similar ones quickly (pgvector, Chroma, Qdrant).
Lesson 08 · Memory, Knowledge & RAG →Webhook
AutomationA URL that receives data from another system and starts a workflow.
Lesson 13 · Workflow Automation Fundamentals →Workflow
AutomationA predefined sequence of steps triggered by an event; may include AI steps.
Lesson 13 · Workflow Automation Fundamentals →No matching terms.