An AI glossary for agents, reasoning models and distillation terms
AI keeps minting jargon because the stack keeps splitting into more layers. One week it’s “agents,” then “reasoning models,” then “distillation,” then a fresh acronym that sounds like it came off a conference badge printer. TechCrunch’s updated gloss...
The AI glossary problem says as much about the industry as the terms do
AI keeps minting jargon because the stack keeps splitting into more layers. One week it’s “agents,” then “reasoning models,” then “distillation,” then a fresh acronym that sounds like it came off a conference badge printer. TechCrunch’s updated glossary works because the terms have stopped being decorative. They map to real engineering choices, real infrastructure costs, and real product trade-offs.
That matters for anyone building with these systems. A term like RAG or RLHF can hide a lot of implementation detail. Agent hides even more. If you’re a developer or tech lead, fuzzy vocabulary usually means fuzzy architecture. And fuzzy architecture gets expensive fast.
Why the glossary matters now
The AI industry has spent the last couple of years turning model capability into product language. Some of that is useful shorthand. Some of it is a mess.
Take AGI. The industry still treats it like a shared milestone, but there’s no shared definition. Sam Altman’s version centers on a median human co-worker. OpenAI’s charter uses “highly autonomous systems that outperform humans at most economically valuable work.” DeepMind’s framing is closer to “at least as capable as humans at most cognitive tasks.” Those are not small differences. They point to different timelines, safety thresholds, and business claims.
For builders, the practical question is simpler: what does a system need to do before you call it “general,” and who gets to decide? If a vendor says their model is headed toward AGI, that tells you more about messaging than capability.
The same problem shows up with “AI agent.” In casual use, it can mean anything from a chatbot with tools to a system that can file expenses, book travel, edit code, and chain those steps together without hand-holding. In engineering terms, that’s a huge spread. A lightweight tool-using assistant and a real autonomous workflow engine are not the same thing. One can be demoed in a browser tab. The other needs orchestration, permissions, logging, retries, sandboxing, and a plan for when it goes off the rails.
That gap between marketing and implementation is where teams get burned.
The terms that change design decisions
Some glossary entries are just vocabulary. Others tell you how a system works.
Compute is one of the clearest examples. It sounds bland, almost managerial, but it sits at the center of the AI business. Compute means the hardware and processing power that make training and inference possible: GPUs, CPUs, TPUs, and the surrounding infrastructure. The industry talks about models in public, but compute sets the ceiling. It determines training cost, latency, throughput, and how many users a product can support without falling over.
If you’re planning a production AI system, compute isn’t a line item. It’s the architecture.
That also explains why distillation matters. Distillation is how a large teacher model transfers behavior to a smaller student model. The appeal is obvious: cheaper inference, lower latency, less hardware dependency. The trade-off is obvious too if you’ve shipped ML systems before. The smaller model can inherit quirks, blind spots, and failure modes from the teacher. Distillation buys efficiency, not magic. It’s one reason major vendors keep pushing faster variants of flagship models. GPT-4 Turbo, for example, was widely understood as benefiting from this kind of compression strategy.
Then there’s fine-tuning. This is where many teams move from “we can use a foundation model” to “we can build a product.” Fine-tuning adapts a general model to a specific domain or task by training on specialized data. That can mean support tickets, legal text, code, medical notes, or internal company docs.
The upside is straightforward. The model starts speaking your language. The downside is less glamorous: you need good data, and you need enough of it. Fine-tuning on a small, messy corpus can make a model worse, not better. It can also bake in domain-specific errors with confidence attached. Teams often underestimate the operational cost of maintaining the dataset, not just the model.
Agents are the hot word, but the plumbing decides whether they work
The current obsession with agents makes sense. A chatbot that answers a question is useful. A system that can take action is more useful, and more dangerous.
The basic agent stack usually includes an LLM, tool access through API endpoints, a planning loop, some memory or state, and guardrails. That last part deserves more attention than it gets. Without it, an agent is just a fast way to automate mistakes.
API endpoints are the quiet enabler here. They let software talk to software. In an agentic system, APIs become the action layer. An agent might query a CRM, send an email, create a calendar event, or open a pull request. Once you give a model these buttons, you need to think about authentication, rate limits, audit trails, and blast radius.
A coding agent makes this sharper. A human developer can inspect a diff, spot an odd refactor, and catch a bad assumption. A coding agent can churn through a codebase, run tests, and patch issues at speed. That’s useful. It’s also the kind of tool that can introduce brittle changes if the review process isn’t strict.
The practical limit is simple: autonomy scales faster than trust. Most teams will need a tiered system, where the model can draft, suggest, and stage changes, but human approval still gates production merges and external actions.
Reasoning, chain-of-thought, and why slower can be better
The glossary’s explanation of chain-of-thought reasoning points to a real shift in model design. Instead of answering in one shot, the model breaks a problem into intermediate steps. That usually improves performance on logic-heavy work, coding tasks, and math-like reasoning.
This matters because the market has spent years acting like faster is always better. It isn’t. For some problems, a slower model that reasons more carefully beats a snappier one that guesses early.
The catch is that chain-of-thought is not free. More steps mean more latency, more tokens, more cost. It can also create a false sense of reliability. A model can produce a plausible reasoning trace and still be wrong. Engineers should treat visible reasoning as an artifact, not proof.
That’s why “reasoning model” has become a distinct category. These systems are trained or tuned to perform better on multi-step tasks. In practice, they’re often the ones you want when you care about code correctness, structured analysis, or hard-to-check output. They’re also overkill for simple generation tasks.
Deep learning, diffusion, and the model families underneath the buzz
A lot of the glossary is doing a second job: reminding people that the field is not one model type.
Deep learning refers to neural networks with many layers. It’s the workhorse behind most modern AI systems because it can learn patterns from raw data without human engineers hand-coding every feature. That’s powerful. It’s also data-hungry, compute-hungry, and not especially interpretable.
Diffusion models are a separate family that became especially important for image generation and are now showing up across media types. The basic trick is elegant. The model learns to reverse a noise process, starting from chaos and reconstructing data. It’s a neat piece of probabilistic engineering, and one reason image generation got good so quickly.
Diffusion is slower than many people expect, especially compared with transformer-based text generation. That latency matters in production. If you’re building a creative tool or media workflow, rendering time and GPU cost are part of the product. If you’re building an interactive system, they can be a dealbreaker.
GANs, neural networks, and older machine learning terms still matter too. The glossary is a reminder that the field didn’t begin with chatbots. A lot of the current hype sits on ideas that have been around for years and only became commercially useful once scale, data, and infrastructure caught up.
The hidden risk in all this terminology
The biggest danger in AI jargon is not confusion for newcomers. It’s false confidence for teams already in the room.
If someone says they’re building an agent, ask what it can do without a human. If someone says they’ve “fine-tuned” a model, ask on what data and with what evals. If someone says the system reasons, ask whether that means better benchmark performance or just longer outputs. If someone throws around AGI, ask what benchmark, what threshold, and what failure modes they’re ignoring.
The glossary helps because it gives people a common starting point. But the real value is sharper than that. It pushes each term back onto the engineering questions that matter:
- What does it cost to run?
- What data does it need?
- Where can it fail?
- Who can it act on behalf of?
- How do you measure whether it’s actually better?
Those are the questions that survive contact with production.
AI vocabulary will keep changing because the products keep changing. The best terms are starting to mean something concrete. Plenty of people still use them like fog machines.
Useful next reads and implementation paths
If this topic connects to a real workflow, these links give you the service path, a proof point, and related articles worth reading next.
Compare models against real workflow needs before wiring them into production systems.
How model-backed retrieval reduced internal document search time by 62%.
TechCrunch published a broad AI glossary this week. That might sound basic, but a lot of the AI market still runs on mushy language. Founders say “agent” when they mean workflow automation. Vendors say “reasoning” when they mean slower inference with...
Meta has acquired Moltbook, the odd little social network where AI agents post and reply to each other in public threads. Deal terms aren’t public. Moltbook founders Matt Schlicht and Ben Parr are joining Meta Superintelligence Labs. Moltbook looked ...
Venture investors are making the same call again: next year is when enterprise AI starts paying off. This time, the pitch is less gullible. TechCrunch surveyed 24 enterprise-focused VCs, and the themes were pretty clear. Less talk about bigger chatbo...