- The Artificial Newsletter
- Posts
- AI Concepts Everyone Should Know
AI Concepts Everyone Should Know
Issue #27 of The Artificial Newsletter
Stop Listening to Vendors. Start Understanding the Technology.
Let me be direct. Most AI explanations are either too technical or too vague to be useful. Vendors use jargon to sound impressive. Consultants make it seem more complicated than it needs to be.
This issue cuts through all of that.
11 concepts. Plain language. Real examples.
Read it once and you will be able to hold your own in any AI conversation — with clients, vendors, or your own team.
———————————————————————————
Concept 1: What AI Actually Is
It is not magic. It is pattern recognition at massive scale.
When most people hear "AI", they imagine a robot that thinks like a human.
That is not what it is.
AI — the type used in business today — is a system trained on millions of examples to recognise patterns. When you give it something new, it matches it against those patterns and produces the most likely useful response.
It does not think. It does not understand. It predicts.
The reason it feels intelligent is that predicting the right answer across millions of scenarios — language, logic, images, code — requires capturing an enormous amount of structure about the world. That structure looks like intelligence from the outside.
———————————————————————————
Concept 2: How AI Learns
Training is like school. A very intense, very expensive school.
Before an AI model can answer anything, it must be trained. Training means showing the model enormous amounts of data and letting it adjust itself until it gets good at predicting the right answer.
Think of it this way: show the model a sentence with the last word removed. It guesses the word. If wrong, it adjusts slightly. Repeat billions of times. Eventually it gets very good — because predicting words accurately requires understanding grammar, facts, logic, and context.
What training actually costs:
Training a frontier model like Claude or ChatGPT costs between $50M and $500M
It requires thousands of specialised chips (GPUs) running for months
Only Anthropic, OpenAI, Google, and Meta do this at scale
As a business, you will almost never train a model. You will use already-trained models and customise them through prompting or your own data. Much cheaper. Much faster.
———————————————————————————
Concept 3: How AI Answers — and Why It Sometimes Gets It Wrong
The model is always confident. It is not always right.
When you send a message to an AI, the model generates a response one word at a time. At each step, it calculates the most likely next word. This is called inference.
The most important risk to understand: Hallucination.
Hallucination is when AI states something false with full confidence. It is not lying. It genuinely cannot distinguish between what it knows and what it is generating as a plausible-sounding answer.
Examples:
Inventing a court case with realistic-sounding names and dates
Quoting a statistic with a fabricated source
Summarising a document and adding details that were never in it
How to manage this risk:
Ground it in real documents — Give the model your actual source material before asking questions. It answers from that, not from imagination.
Keep humans in the loop — Any AI output driving financial transactions, legal documents, or client communications needs a human review step.
Ask it to cite sources — If it cannot find a source, it should say so. Surface uncertainty. Do not hide it.
———————————————————————————
Concept 4: Tokens — Why AI Has a Memory Limit
AI does not read words. It reads chunks. And it can only hold so many at once.
AI breaks text into small units called tokens — roughly three-quarters of a word each.
A typical business email ≈ 200–300 tokens/ A 50-page report ≈ 25,000 tokens
The context window is AI's short-term memory.
Everything in a conversation — your question, attached documents, previous replies — must fit within this window. Exceed the limit and earlier content simply disappears. The model does not summarise it. It is gone from that session.
Modern models are generous. Claude holds roughly 500 pages at once. GPT-4o holds around 300 pages. Enough for most business use cases.
Why it matters for pricing: AI APIs charge per token — inputs and outputs both. At individual scale, negligible. At enterprise volume, it adds up fast.
———————————————————————————
Concept 5: Embeddings — How AI Understands Meaning
AI converts words into numbers so it can measure how similar ideas are.
Here is a question: how does a computer know that "resignation letter" and "termination notice" mean roughly the same thing — without looking them up in a dictionary?
Embeddings. An embedding converts any piece of text into a list of numbers — a point in mathematical space. Text with similar meanings ends up close together. Very different text ends up far apart.
Why traditional search fails — and embeddings do not:
Traditional keyword search misses documents because the words do not match exactly. Embedding-based search understands meaning. "Employee exit", "staff offboarding", "resignation process", and "termination workflow" all land in roughly the same place.
This is the foundation of every modern AI search system. Any product that claims to "search intelligently" across your documents is using embeddings under the hood.
———————————————————————————
Concept 6: Vector Databases — AI's Filing Cabinet
A specialised database that stores and retrieves by meaning, not exact match.
Once your documents are converted into embeddings, you need somewhere to store them and search them quickly. That is a vector database.
A regular database finds records by exact match — find all employees where department = Finance
A vector database finds the 5 documents most similar in meaning to your question
Companies typically store: internal policies, HR handbooks, product documentation, client contracts, support tickets, technical guides.Once stored, any of it can be searched by meaning and fed to an AI before it generates an answer. This is the core of the next concept.
The main products you will hear: Pinecone, Weaviate, Qdrant, pgvector. They all do roughly the same job. The choice between them is an engineering decision — not one you need to make.
———————————————————————————
Concept 7: RAG — Giving AI Your Own Data
How to make AI answer from your documents. Without retraining anything.
RAG stands for Retrieval Augmented Generation. It is the single most important technique for enterprise AI.The problem: a trained model knows a lot about the world in general. It knows nothing specific about your company — your policies, client history, internal processes, product configurations.
Retraining would cost millions and take months. RAG is far simpler.
How RAG works, step by step:
Store your documents — Break them into chunks, convert to embeddings, store in a vector database
Search at query time — When a user asks a question, find the most relevant chunks
Feed to the AI — Place those chunks in the AI's context window alongside the question
Grounded answer — The AI answers from your actual documents, not from its imagination
Every time a vendor says their AI "knows your data" or "searches your knowledge base" — they are using RAG. The quality depends entirely on how well they built the retrieval layer.
A poorly built RAG system retrieves the wrong documents. The AI confidently answers from the wrong source. You get wrong answers delivered with confidence.
A well-built RAG system retrieves precisely the right content — and the AI's answer is grounded, accurate, and citable.
———————————————————————————
Concept 8: AI Agents — From Answering to Doing
The shift from AI as a responder to AI as an operator.
Everything covered so far is AI that answers. You ask, it responds. The conversation ends there.An AI agent is different. It does not just answer — it acts. It takes a goal, breaks it into steps, uses tools to complete each step, checks results, and continues until the goal is achieved.
Example: An agent connected to your HR system, given one instruction — "Handle this employee pay query."
It can:
Look up the worker's profile
Check their current pay details
Cross-reference the relevant policy
Draft a response to the employee
Log the interaction
All from a single instruction.
What makes agents different from automation:
Traditional automation follows a fixed script. Something unexpected happens — it fails or escalates. An AI agent can reason about unexpected situations, decide what to do, and adapt. It handles variation — which is exactly what makes most business processes hard to automate.
The risk: The more autonomy you give an agent, the more important your guardrails become. Define what it can do without approval. What requires human sign-off. What is completely off-limits.
This is not a reason to avoid agents. It is a reason to design them carefully.
———————————————————————————
Concept 9: MCP — The Universal Plug for AI
A standard that lets AI connect to any system, consistently.
MCP stands for Model Context Protocol. Anthropic created and open-sourced it in late 2024. It has quickly become the dominant standard for connecting AI to external systems.
Before MCP, every AI integration was custom-built. Claude connecting to Google Drive = a custom connector. Connecting to Workday = another custom connector. Each one fragile. Each one maintained separately.
MCP standardises this. If a system implements MCP, any MCP-compatible AI can connect to it immediately. One standard, infinite connections.
When an AI connects via MCP, the system exposes a list of tools the AI can use. A Workday MCP server might expose: look up a worker's details, run a report, check leave balances, initiate a business process.
The AI reads this list and decides which tools to use based on what the user asked.
Why security matters here:
When AI connects to a live system on behalf of a user, it should act under that user's credentials — not a shared system account.
Audit trail — If the AI takes an action in your system, it must be traceable to the user who asked for it
Access control — The AI should only be able to do what that user is permitted to do
A shared account often has broader permissions than any individual should have. That is a risk you do not want.
———————————————————————————
Concept 10: Fine-Tuning vs Prompting
Two ways to shape how AI behaves. One is expensive. One is not.
Prompting is the instruction you give the AI before your question.
"You are an HR assistant. Answer questions about company policy clearly and concisely. If you are unsure, say so."
A well-crafted prompt can dramatically change tone, format, focus, and what the AI will or will not do. Combined with RAG, prompting covers the vast majority of enterprise use cases.
It costs nothing extra. It takes hours to iterate on, not months.
Fine-tuning is continuing to train an already-trained model on your specific data. The result is a model with baked-in knowledge of your domain — your terminology, your formats, your patterns.
Fine-tuning costs more, takes longer, and requires large amounts of high-quality training data. It can also make the model worse at general tasks while improving at specific ones.
Fine-tuning only makes sense when:
Your domain uses highly specialised vocabulary not in general training data
You need the model to consistently produce a very specific output format
You have thousands of high-quality labelled examples ready
You have thoroughly tried prompting and it is not enough
For most businesses: prompting plus RAG is the right starting point. Fine-tuning is a later-stage optimisation, not where you begin.
———————————————————————————
Concept 11: What This All Means for Your Business
The value is in the application, not the model.
Claude, GPT-4, Gemini — these are commodities. Any company can access them via API. The competitive advantage is not which model you use. It is how you connect it to your domain knowledge, your workflows, and your client systems.
A firm that builds a well-designed RAG system on top of fifteen years of domain expertise has something genuinely hard to replicate. The model is the engine. The knowledge layer is the moat.
Questions to ask any AI vendor:
Is the AI answering from my actual data — or from its general training?
How are user credentials handled when the AI takes actions in my systems?
What happens when the AI is wrong? Is there a human review step for high-stakes outputs?
What does it cost per month at our expected volume, and how does that scale?
Who owns the data that flows through this system?
Questions to ask your own team:
Which workflows involve the most repetitive, document-heavy work? (RAG candidates)
Which decisions currently depend on one or two senior people's expertise? (Agent candidates)
Where does a wrong AI answer cause real harm — and do we have a review step there?
What data would we need to make AI genuinely useful — and is it structured, accessible, and clean?
———————————————————————————
The Hard Truth
The firms that win are not the ones that deploy AI everywhere.They are the ones that deploy it in exactly the right places, with the right design.Knowing about AI will not matter. Watching demos will not matter. Talking strategy without building will not matter.
What will matter: Can you apply AI to create real outcomes for your clients and your business?
If the answer is no, you are exposed.
———————————————————————————
Final Advice
AI is not optional anymore. Understanding it is the baseline.This issue gave you the vocabulary. The next step is knowing how to apply it — and that is exactly what we cover in the issues ahead.