📚 Beginner-Friendly · No Math Required

AI Glossary for Beginners

From Model, Token, and RAG to MCP, Agent, Loop, and Graph — the 7 core concepts that power modern AI. Explained in plain English, no computer science degree needed.

📋 Version v1.0 📅 Updated Aug 2026 🎯 For non-technical readers
1Model 2Token 3RAG 4MCP 5Agent 6Loop 7Graph
1

Model

The Brain

A model is a computer program trained on massive amounts of text data — books, articles, websites, code. By analyzing patterns in this data, it learns to understand and generate human-like language. When you ask it a question, it predicts the most likely response based on everything it has learned.

You can think of a model as an incredibly well-read assistant. It has consumed billions of pages of text and can now answer questions, write essays, summarize documents, write code, and even have conversations — all by predicting what words should come next.

💡 Simple Analogy

Imagine someone who has read every book in a giant library. They didn't memorize exact pages, but they absorbed the patterns: how questions are answered, how stories are told, how arguments are structured. When you ask them something, they draw on all that knowledge to give you a reasonable answer. That's a model.

Key Takeaways
  • Trained on billions of words from the internet
  • Generates responses by predicting the next most likely word
  • Doesn't "understand" like humans do — it recognizes patterns
  • Popular models: GPT-4, Claude, Gemini, MiMo
2

Token

The Currency of AI

A token is the basic unit of text that a model processes. It's not exactly a word — it's more like a piece of a word. A short common word like "cat" is one token. A longer word like "understanding" might be split into "under" and "standing" (two tokens). Chinese characters are typically one token each.

When you send a message to an AI, your text gets broken into tokens. The model processes these tokens to understand your input and generate a response. The cost of using AI APIs is measured in tokens — just like how you pay for electricity by the kilowatt-hour.

💡 Simple Analogy

Think of tokens as syllables. "Hello" = 1 token. "Unbelievable" = "un" + "believe" + "able" = 3 tokens. The more tokens you use (both input and output), the more computation and cost involved.

Key Takeaways
  • 1 token ≈ 4 characters in English, or ¾ of a word
  • 1 token ≈ 1 Chinese character
  • API pricing is per 1,000 or 1,000,000 tokens
  • Longer conversations = more tokens = higher cost
3

RAG (Retrieval-Augmented Generation)

Giving AI Your Knowledge

RAG solves a critical problem: AI models have a knowledge cutoff date and don't know your company's private data. RAG lets you bring your own documents into the conversation.

Here's how it works: When you ask a question, the system first searches your documents (PDFs, databases, wikis) for relevant passages. It then sends those passages along with your question to the AI. The AI reads your documents and answers based on them — not just on what it learned during training.

💡 Simple Analogy

Imagine taking an open-book exam. Instead of answering from memory alone, you can look up relevant pages in the textbook before answering. RAG lets AI "open the book" — it checks your documents first, then gives an answer grounded in facts, not guesswork.

Key Takeaways
  • Combines AI's language skills with your specific data
  • Reduces hallucinations — answers are grounded in your documents
  • Keeps knowledge up-to-date without retraining the model
  • Widely used in enterprise: customer support, internal Q&A, legal research
4

MCP (Model Context Protocol)

Connecting AI to Your Tools

MCP is a standard protocol that lets AI models connect to external tools and data sources — databases, APIs, file systems, and more. It acts as a universal adapter between AI and the systems it needs to interact with.

Before MCP, every AI application needed custom integrations for each tool it wanted to use. MCP standardizes this: a model can connect to any MCP-compatible server and immediately access its tools. This is what allows KOPI AI Agent to connect to Amazon, Shopify, TikTok Shop, and your ERP through a single protocol.

💡 Simple Analogy

Think of MCP as USB-C for AI. Before USB-C, every device needed its own cable. Now, one standard cable works for phones, laptops, monitors, and more. MCP does the same for AI — one protocol connects to any tool.

Key Takeaways
  • Universal standard for AI-to-tool communication
  • Eliminates the need for custom integrations per tool
  • Enables AI to take real actions: send emails, query databases, create tickets
  • Core enabler of KOPI AI Agent's cross-border e-commerce platform integrations
5

Agent

AI That Acts Autonomously

An AI agent is a system that doesn't just answer questions — it takes action. Given a goal, an agent can break it into steps, use tools, make decisions, and adapt its approach based on results. It's the difference between a calculator (responds to input) and an employee (works towards a goal).

For example, a customer service agent can: read an incoming complaint → search the order database → check the refund policy → process the refund → send a follow-up email → log the interaction — all without human intervention. Multiple agents can even work together as a team, each handling different tasks.

💡 Simple Analogy

A chatbot is like a customer service rep who can only answer FAQ questions. An agent is like a full employee who can answer questions AND take action — look up orders, issue refunds, call the shipping company, and escalate to a manager when needed.

Key Takeaways
  • Understands a goal, plans steps, uses tools, and iterates
  • Can work autonomously or as part of a multi-agent team
  • The foundation of KOPI AI Agent's 7×24 autonomous AI workforce
  • Replaces repetitive human work at a fraction of the cost
6

Loop (Agentic Loop)

How Agents Think and Iterate

The agentic loop is the cyclical process an agent follows to achieve its goal. It's the "thinking engine" that makes agents more than just one-shot question-answerers.

Each cycle has four phases: Observe (gather information from tools and environment) → Think (reason about what to do next) → Act (use a tool or take an action) → Evaluate (check if the result moves closer to the goal). If the goal isn't met, the loop repeats with updated information.

💡 Simple Analogy

Think of how you cook a new recipe. You read the recipe (Observe), decide what to do first (Think), start chopping vegetables (Act), then check if the pieces are the right size (Evaluate). If not, you adjust and continue. The loop continues until the dish is done.

Key Takeaways
  • Observe → Think → Act → Evaluate → Repeat
  • Allows agents to self-correct and handle unexpected situations
  • Each loop iteration consumes tokens — efficiency matters
  • Well-designed loops prevent infinite repetition and control costs
7

Graph (Knowledge Graph)

How AI Understands Relationships

A knowledge graph is a structured way to store information as a web of entities (things) and relationships (connections between them). Instead of storing data in flat tables, a graph captures how everything relates to everything else.

For example: "Company A" → is a customer of → "Company B" → is located in → "Singapore" → is part of → "Southeast Asia". When AI has access to this graph, it can reason about complex relationships that would be hard to extract from plain text. Knowledge graphs give AI structured memory.

💡 Simple Analogy

Imagine a detective's investigation board with photos, names, and red string connecting them. Each string represents a relationship. The board helps the detective see connections that aren't obvious from individual pieces. A knowledge graph does the same for AI — it shows how things connect.

Key Takeaways
  • Stores entities (nodes) and relationships (edges)
  • Enables complex multi-hop reasoning
  • Complements RAG — structured knowledge vs. unstructured documents
  • Used in recommendation engines, fraud detection, and enterprise knowledge management

Quick Reference

Model
The AI brain, trained on text data
Token
Basic unit of text; pricing currency
RAG
Let AI read your documents
MCP
Connect AI to external tools
Agent
AI that acts autonomously
Loop
Observe → Think → Act → Evaluate
Graph
Structured knowledge relationships
Together
These 7 concepts form the modern AI stack

Ready to Put AI to Work?

KOPI AI Agent turns these concepts into real business results. Deploy your autonomous AI workforce today.

Explore AI Agents →