AI Jargon Dictionary (March 2026 Edition), Recommended to Bookmark

Odaily星球日报Published on 2026-03-11Last updated on 2026-03-11

Abstract

The "AI Jargon Dictionary (March 2026 Edition)" is a practical guide for those new to the AI field, especially crypto enthusiasts looking to stay relevant. It covers essential and advanced AI terms to help readers understand key concepts and avoid confusion in industry discussions. The dictionary is divided into two parts: **Basic Vocabulary (12 terms):** - Core concepts like LLM (Large Language Model), AI Agent (intelligent systems that execute tasks), Multimodal (handling multiple data types), and Prompt (user instructions). - Key technical terms: Token (processing unit), Context Window (token capacity), Memory (retaining user data), Training vs. Inference (learning vs. execution), and Tool Use (calling external tools). - Generative AI (AIGC) and API (integration interface) are also explained. **Advanced Vocabulary (18 terms):** - Technical foundations: Transformer architecture, Attention mechanism, and Parameters (model scale). - Emerging trends: Agentic Workflow (autonomous systems), Subagents, Skills (reusable modules), and Vibe Coding (AI-assisted programming). - Challenges: Hallucination (incorrect outputs), Latency (response time), Guardrails (safety controls). - Optimization techniques: Fine-tuning, Distillation (model compression), RAG (Retrieval-Augmented Generation), Grounding (fact-based responses), Embedding (vector encoding), and Benchmark (performance evaluation). The article emphasizes practicality, urging readers to learn these term...

Original | Odaily Planet Daily (@OdailyChina)

Author | Golem (@web 3_golem)

Now, if people in the crypto circle don't pay attention to AI, they are easily ridiculed (yes, my friend, think about why you clicked in).

Are you completely clueless about the basic concepts of AI, asking Doubao what every abbreviation in a sentence means? Or are you confused by various technical terms at AI offline events, pretending you haven't lost track?

Although it's unrealistic to jump into the AI industry overnight, knowing the high-frequency basic vocabulary of the AI industry is always beneficial. Fortunately, the following article is prepared for you↓ Sincerely recommend that you read it thoroughly and bookmark it.

Basic Vocabulary (12)

LLM (Large Language Model)

LLM is essentially a deep learning model trained on massive amounts of data, excelling at understanding and generating language. It processes text and is increasingly capable of handling other types of content.

In contrast, there is SLM (Small Language Model)—typically emphasizing lower cost, lighter deployment, and more convenient localization of language models.

AI Agent (AI Intelligent Agent)

AI Agent refers not just to "a model that can chat," but to a system that can understand goals, call tools, execute tasks step by step, and even plan and verify when necessary. Google defines an agent as software that can reason based on multimodal inputs and perform actions on behalf of the user.

Multimodal (Multimodal)

Such AI models don't just read text; they can simultaneously process and generate various types of input and output, including text, images, audio, and video. Google explicitly defines multimodality as the ability to process and generate different types of content.

Prompt (Prompt)

The instruction input by the user to the model, which is the most basic form of human-computer interaction.

Generative AI (Generative AI / AIGC)

Emphasizes AI's ability to "generate" rather than merely classify or predict. Generative models can generate text, code, images, memes, videos, and other content based on prompts.

Token (Token)

This is one of the concepts in the AI circle most similar to a "Gas unit." Models don't understand content by "word count" but process input and output by tokens. Billing, context length, and response speed are often strongly related to tokens.

Context Window (Context Window / Context Length)

Refers to the total number of tokens a model can "see" and utilize at once. It can also be described as the number of tokens the model can consider or "remember" during a single processing instance.

Memory (Memory)

Allows the model or Agent to retain user preferences, task context, and historical states.

Training (Training)

The process by which the model learns parameters from data.

Inference (Inference Execution)

Opposite of training, it refers to the process where the model receives input and generates output after deployment. The industry often says, "Training is expensive, but inference is even more costly," because many costs during the actual commercialization phase occur during inference. The distinction between training and inference is also a fundamental framework in discussions about deployment costs among major vendors.

Tool Use / Tool Calling (Tool Calling)

Means the model doesn't just output text but can also call tools such as search, code execution, databases, and external APIs. This is already considered one of the key capabilities of an Agent.

API (Interface)

The infrastructure used when AI products, applications, or Agents connect to third-party services.

Advanced Vocabulary (18)

Transformer (Transformer Architecture)

A model architecture that enables AI to better understand contextual relationships. It is the technical foundation for most large language models today. Its biggest feature is the ability to simultaneously consider the relationships between every word in an entire segment of content.

Attention (Attention Mechanism)

It is the most critical core mechanism of the Transformer. Its role is to allow the model to automatically determine "which words are most worth focusing on" when reading a sentence.

Agentic / Agentic Workflow (Agentic / Agentic Workflow)

This is a very hot term recently. It means a system is no longer just "question and answer" but has a certain degree of autonomy to break down tasks, decide next steps, and call external capabilities. Many vendors see it as a sign of "moving from Chatbot to an executable system."

Subagents (Sub-agents)

An Agent further breaks down into multiple specialized smaller Agents to handle sub-tasks.

Skills (Reusable Capability Modules)

With the popularity of OpenClaw, this term has become noticeably more common recently. These are installable, reusable, and composable capability units/operation manuals for AI Agents. However, there are specific warnings about tool misuse and data exposure risks.

Hallucination (Machine Hallucination)

Refers to the model speaking nonsense with a straight face, "perceiving patterns that do not exist" and thus generating erroneous or absurd outputs. It is the model's seemingly reasonable but actually wrong overconfident output.

Latency (Latency)

The time it takes for the model to output results after receiving a request. It is one of the most common engineering jargon terms and frequently appears in discussions about implementation and productization.

Guardrails (Guardrails)

Used to restrict what the model/Agent can do, when to stop, and what content cannot be output.

Vibe Coding (Vibe Coding)

This term is also one of the most popular AI jargons today. It means users directly express requirements through conversation, and the AI writes the code, while the user doesn't need to specifically understand how to code.

Parameters (Parameters)

The internal numerical scale of the model used to store capabilities and knowledge. It is often used as a rough measure of the model's size. "Billions of parameters" and "trillions of parameters" are among the most common intimidating phrases in the AI circle.

Reasoning Model (Strong Reasoning Model)

It typically refers to models that are better at multi-step reasoning, planning, verification, and complex task execution.

MCP (Model Context Protocol)

This is a very hot new jargon in the past year. Its role is similar to establishing a universal interface between the model and external tools/data sources.

Fine-tuning / Tuning (Fine-tuning)

Continuing training on a base model to make it more adapted to specific tasks, styles, or domains. Google's terminology list directly treats tuning and fine-tuning as related concepts.

Distillation (Distillation)

Compressing the capabilities of a large model into a smaller model as much as possible, akin to having a "teacher" teach a "student."

RAG (Retrieval-Augmented Generation)

This has almost become a basic configuration for enterprise AI. Microsoft defines it as a "search + LLM" pattern, using external data to ground the answers, solving problems like outdated training data and lack of knowledge about private knowledge bases. The goal is to base answers on real documents and private knowledge, rather than relying solely on the model's own memory.

Grounding (Fact Alignment)

Often appears together with RAG. It means making the model's answers based on external sources like documents, databases, web pages, etc., rather than just relying on parameter memory for "free play." Microsoft explicitly lists grounding as a core value in its RAG documentation.

Embedding (Vector Embedding / Semantic Vector)

Encoding text, images, audio, and other content into high-dimensional numerical vectors to calculate semantic similarity.

Benchmark (Benchmark Test)

A evaluation method that uses a unified set of standards to test model capabilities. It is also the language of leaderboards that various vendors love to use to "prove they are strong."

Trending Cryptos

Related Questions

QWhat is the core function of a Large Language Model (LLM) according to the article?

AThe core function of an LLM is to be a deep learning model trained on massive amounts of data, excelling at understanding and generating language. It primarily processes text and is increasingly capable of handling other types of content.

QWhat key ability defines an AI Agent beyond just being a 'chatty model'?

AAn AI Agent is defined by its ability to understand goals, call upon tools, execute tasks step-by-step, and perform planning and verification when necessary. It's a system that can reason based on multimodal input and perform actions on behalf of the user.

QWhat does the term 'Token' represent in the context of AI models, and what is it compared to?

AA 'Token' is a unit of processing for AI models, similar to how 'Gas' is a unit in some blockchain systems. It's how the model understands content, not by word count. Fees, context length, and response speed are all strongly related to token usage.

QWhat is the purpose of 'RAG' (Retrieval-Augmented Generation) as described in the article?

AThe purpose of RAG is to combine search with a Large Language Model (LLM). It uses external data to ground the model's answers, solving problems like outdated training data and a lack of knowledge about private databases. The goal is to base answers on real documents and private knowledge rather than relying solely on the model's internal memory.

QWhat does the term 'Hallucination' mean in relation to AI models?

A'Hallucination' refers to the phenomenon where an AI model confidently produces incorrect or nonsensical outputs, 'perceiving patterns that do not exist'. It is the model's seemingly reasonable but actually erroneous overconfident output.

Related Reads

As Consensus Accelerates, What Are Young Investors Betting On?

Title: As Consensus Forms Faster, What Are Young Investors Betting On? In the rapid evolution of tech investment, a new generation of young investors is navigating a landscape where AI, robotics, commercial aerospace, and quantum computing are advancing simultaneously. Traditional investment logic based on financial models is giving way to a need for deep technical understanding and the ability to act before industry consensus forms. An analysis of trends from the "WAIC FUTURE TECH" list of young investment leaders reveals key shifts in focus. The first major trend is the movement of AI from the digital screen into the physical world. Investment is shifting from large language models and chatbots towards embodied AI, robotics, AI hardware, and edge computing. While demonstrations generate excitement, the real challenge lies in achieving scalable, reliable, and cost-effective delivery in complex real-world environments like factories and logistics. Success depends not just on algorithms but on the integration of sensors, actuators, and control systems. Second, the competitive focus for large models is moving beyond raw capability toward building an "intelligence flywheel." The goal is to create self-reinforcing systems where user interaction generates data, improving the model, which in turn enhances the user experience and attracts more engagement. Companies that successfully embed AI into workflows to create these closed-loop systems can build lasting value that isn't easily erased by the next model upgrade. Third, facing a potential bottleneck in high-quality human-generated data, investors are looking at new underlying technologies. Reinforcement learning and self-play, as demonstrated by AlphaGo Zero, offer paths for AI to generate its own experience. Scientific foundation models, which aim to build general AI capabilities for fields like life sciences and materials discovery, represent a non-consensus direction that could unlock new frontiers of knowledge and data. Finally, in deep-tech areas like quantum computing, commercial aerospace, and space-based infrastructure, patient capital is essential. These fields have long, uncertain development and validation cycles involving complex engineering, supply chains, and regulations. Investment here requires a long-term view, focusing on foundational team capabilities and the eventual emergence of market demand, even if commercial returns are distant. Collectively, these trends illustrate how young investors are adapting to a new era. They are learning to make earlier, technically-informed judgments, balance hype with real-world viability, and provide the patient capital needed to build the deep-tech foundations of the future.

marsbit17m ago

As Consensus Accelerates, What Are Young Investors Betting On?

marsbit17m ago

Can Japan Buy Growth with AI? Will the Bond Market Believe It?

Japan's cabinet has introduced the 2026 Basic Policy on Economic and Fiscal Management and Reform, shifting its primary fiscal target. The new framework moves away from the traditional annual primary balance goal and instead prioritizes a stable reduction of the debt-to-GDP ratio. This change is tied to a strategy of increased "responsible proactive fiscal" spending, aiming to boost long-term growth through investments in strategic sectors like AI, semiconductors, energy, and robotics. The government estimates total public and private investment in 62 key technologies could exceed 370 trillion yen by 2040. The market reaction has been mixed and cautious. While equity markets may respond to policy signals, bond markets are focused on fiscal credibility. Concerns center on whether the weakening of the clear primary balance anchor could lead to looser fiscal discipline. If investors doubt that these strategic investments will generate sufficient productivity gains, tax revenue, and nominal growth to outpace rising interest costs, they may demand higher yields on Japanese Government Bonds (JGBs). Recent volatility in the yen and JGB yields, with the 10-year yield briefly reaching 2.9%, reflects this skepticism. The success of this new framework hinges on two factors: whether Japan can achieve a nominal growth rate consistently higher than its long-term interest rates, and whether future budgets demonstrate disciplined control over bond issuance. The government's narrative is that strategic investment is essential to break Japan's cycle of low growth, aging, and labor shortages. However, the bond market will continuously assess the credibility of this plan, pricing the risk that it may represent fiscal expansion rather than a viable growth strategy.

marsbit54m ago

Can Japan Buy Growth with AI? Will the Bond Market Believe It?

marsbit54m ago

Misjudged A-Shares: Resilience, Expectations, and Confidence

China's A-share market recently faced selling pressure, especially in tech sectors, initially triggered by a global tech sell-off that began in South Korea. However, the article argues this is a case of "mistaken injury" and highlights the market's underlying resilience. This resilience stems from three main pillars: **1) Tech Sector Fundamentals:** Unlike Korea's market dominated by a few memory chip stocks, China's tech sector is diversified across computing, communications, electronics, and semiconductors, supported by dual narratives of global AI supply chains and domestic substitution. Core areas like optical modules and fiber optics continue to show strong earnings growth. **2) "National Team" Support:** State-backed institutions and large corporations have made significant market purchases and announced buybacks, providing liquidity and signaling confidence. This is seen as a stabilizing policy signal, often associated with market bottoms. **3) Broader Market Pillars:** Other major sectors are showing endogenous recovery momentum. Consumer stocks benefit from stabilizing CPI and signs of sector recovery (e.g., liquor price hikes). Cyclical sectors like aluminum have high earnings, potential price increases due to tight supply, and low valuations. The financial sector offers stable dividends and low valuations. The conclusion is that the sell-off was driven by external contagion, not a collapse in fundamentals. With strong policy support and recovering momentum across key sectors, the A-share market possesses the toughness to regain stability.

marsbit1h ago

Misjudged A-Shares: Resilience, Expectations, and Confidence

marsbit1h ago

Trading

Spot

Hot Articles

Discussions

Welcome to the HTX Community. Here, you can stay informed about the latest platform developments and gain access to professional market insights. Users' opinions on the price of AI (AI) are presented below.

活动图片