Latest AI Terms You Need to Know in 2026

🙋 Who Is This For?

If you spent the last couple of years heads-down in an exam, a job, a family situation — basically anything that kept you away from tech news — you may have surfaced to find that everyone around you is suddenly talking about AI in a completely different language. You are not alone.

This post started with a conversation with a close relative of mine. She had spent the last few years locked into serious exam preparation — the kind where you genuinely disconnect from everything else. When she came out the other side, she asked me a simple question: “What’s going on with all this AI stuff?” She’s curious, and capable — she just hadn’t had the bandwidth to follow along while it was happening.

I started searching suitable courses and playlists for her, and that’s when I noticed the problem. Every resource I found assumed you’d been watching the space for months or years. The AI development moved so fast that even well-intentioned beginner content from 2023 already feels like it drops you in the middle of a story.

The problem isn’t that you’re behind. The problem is that most AI courses and playlists were created alongside the development as it happened. That means they assume you’ve been following along. They go deep fast. They’re full of jargon that makes perfect sense if you’ve watched fifty prior videos — and zero sense if you haven’t.

This post is my attempt to fix that. It’s built for someone who just needs a clear map of what happened, in what order, and why it mattered — before diving into any deep course.

You’ll find:

  • A curated playlist of short, beginner-friendly videos that each explain one concept cleanly
  • A visual timeline of how AI evolved, and why each breakthrough was necessary
  • A curriculum if you want to go one level deeper on a specific topic

No prior knowledge assumed. Start anywhere that catches your interest.


▶️ YouTube Video Playlist

This blog contains a curated list of AI/LLM videos:

#Title
1AI, Machine Learning, Deep Learning and Generative AI Explained
2Generative vs Agentic AI: Shaping the Future of AI Collaboration
3What is generative AI and how does it work? – The Turing Lectures
4What are Generative AI models?
5Fine Tuning LLM Explained Simply
6What is Mixture of Experts?
7What is a Context Window? Unlocking LLM Secrets
8RAG vs. Fine Tuning
9Knowledge Distillation: How LLMs train each other
10What is Tool Calling? Connecting LLMs to Your Data
11AI Tool Calling via Natural Language: LLMs, APIs & Docker in Action
12MCP vs API: Simplifying AI Agent Integration with External Data
13CLI vs MCP: How AI Agents Choose the Right Tool for the Job
14MCP vs. RAG: How AI Agents & LLMs Connect to Data
15MCP vs Skills: Which Is Right for Your AI Agent and LLMs?
16What AI Agent Skills Are and How They Work

🗺️ AI / LLM Evolution — Why Each Discovery Happened

Every breakthrough below was triggered by a frustration the previous one left behind. The arrow between each milestone is the problem that forced the next step.

flowchart TD A["📄 2017 · Transformer"] B["🧠 2018-19 · Pre-trained LLMs — BERT, GPT-2"] C["💬 2020 · Scale and Few-Shot — GPT-3"] D["🎯 2022 · RLHF and Instruction Tuning — ChatGPT"] E["📚 2023 · RAG — Retrieval-Augmented Generation"] F["🔧 2023 · Tool Calling — OpenAI Functions"] G["🔌 2024 · MCP — Model Context Protocol"] H["🤖 2024-25 · Agentic AI — AutoGPT, CrewAI, Copilot Agents"] I["🎓 2025-26 · Agent Skills — Copilot Skills, SKILLS.md"] A -->|"RNNs were slow and lost long-range context"| B B -->|"Every task still needed full training from scratch"| C C -->|"Powerful but misaligned — hard to direct safely"| D D -->|"Knowledge cut-off, hallucinations, no access to live data"| E E -->|"Could read data but could not act on the world"| F F -->|"Every tool integration was bespoke and non-standard"| G G -->|"Single-step only — no autonomous multi-step planning"| H H -->|"Agent capabilities were one-off and not reusable"| I classDef foundation fill:#1e3a5f,stroke:#4a90d9,color:#fff classDef alignment fill:#3d1f63,stroke:#8b5cf6,color:#fff classDef dataAccess fill:#1f4a3d,stroke:#34d399,color:#fff classDef protocol fill:#4a3000,stroke:#f59e0b,color:#fff classDef agentEra fill:#4a1a00,stroke:#f97316,color:#fff classDef current fill:#1a4a1a,stroke:#4ade80,color:#fff class A,B,C foundation class D alignment class E,F dataAccess class G protocol class H agentEra class I current
#Milestone✅ Problem It Solved❌ Problem It Left Behind
12017 · TransformerAttention Is All You NeedRNNs couldn’t parallelise and lost context over long sequencesEvery downstream task still needed a full model trained from scratch
22018–19 · Pre-trained LLMs — BERT, GPT-2Train once on massive data, fine-tune cheaply per task — transfer learning unlockedModels predicted tokens but couldn’t reliably follow instructions or user intent
32020 · GPT-3 — Scale and Few-Shot LearningEmergent reasoning; tasks solved with just a few examples in the prompt — no fine-tuning neededExtremely capable but unpredictable and misaligned — unsafe to deploy as-is
42022 · RLHF + Instruction Tuning — InstructGPT, ChatGPTHuman feedback shaped models to follow intent safely and consistentlyHard knowledge cut-off date; hallucinations on unknown facts; no access to live or private data
52023 · RAG — Retrieval-Augmented GenerationInject real-time or private documents at query time — no retraining requiredLLMs could read and reason over data but still couldn’t take actions in the real world
62023 · Tool / Function Calling — OpenAI Functions, LangChainLLMs call APIs, run code, query databases — bridging language to actionEvery tool had to be wired manually with custom code; no shared standard, hard to scale
72024 · MCP — Model Context ProtocolOpen standard so any LLM can connect to any tool or data source with zero custom glueInteractions were still single-step; no model for autonomous multi-turn planning or looping
82024–25 · Agentic AI — AutoGPT, CrewAI, Copilot AgentsLLMs plan, loop, delegate to sub-agents and execute long multi-step tasks autonomouslyAgent logic was monolithic and bespoke — built once per use-case, not reusable across agents
92025–26 · Agent Skills — Copilot Skills, Semantic KernelPackage domain knowledge, tools and workflows as plug-in capabilities any agent can reuse(Current frontier — watch this space)

🎓 Curriculum Task

Question to answer:

How does the number of MCP tool calls impact/hamper the context window?


📚 Suggested Study Path

Step 1 — Foundation (Watch first)

Step 2 — MCP Specifics

Step 3 — Advanced Context


🧠 Key Concepts to Understand

Context Window

├── Fixed token budget (e.g. 128K, 200K tokens)

├── Each MCP Tool Call consumes tokens:
│   ├── Tool DEFINITION (schema/description)  → added at system level
│   ├── Tool CALL request  (LLM output)        → output tokens
│   └── Tool RESULT (server response)          → input tokens

└── Problem with many MCP tools:
    ├── 🔴 More tools registered = larger system prompt
    ├── 🔴 Each call+result eats into remaining context
    ├── 🔴 Multi-hop chains (tool → tool → tool) multiply usage
    └── 🔴 Long tool results (e.g. big JSON/DB dumps) spike token use

📝 Research Question Breakdown

Sub-QuestionWhere to Find Answer
What is a token/context window?#7
How are tool schemas stored in context?#10
How do MCP tool results fill context?#11 #12
What happens when context is full?#7
How to optimize (RAG vs MCP)?#8 #14

🎯 Expected Answer Summary (to verify after study)

Every MCP tool call injects 3 token blocks into the context window: ①tool schema definitions, ②the call arguments, ③the tool response. With many tools or long chains, this rapidly consumes the fixed token budget → the LLM truncates older context, loses memory of earlier conversation/results, and performance degrades or errors occur.

Listening Mode
Ready
1x