PromptQuorumPromptQuorum
主页/提示词工程/提示工程词汇表:100个关键术语
Fundamentals

提示工程词汇表:100个关键术语

·12分钟阅读·Hans Kuepper 作者 · PromptQuorum创始人,多模型AI调度工具 · PromptQuorum

100个最重要的提示工程术语的简明定义——从令牌和上下文窗口到代理编排、RAG和评估指标。

Top 20 Most Important AI & Prompt Engineering Terms (2026)

Master the essential terminology of artificial intelligence and prompt engineering. These 20 core concepts form the foundation of working with LLMs, from fundamental architectures to advanced optimization techniques. Whether you're building AI agents, implementing RAG systems, or optimizing prompt performance, understanding these terms will accelerate your expertise across all areas of AI development and deployment.

Commonly Confused AI Terms

Quick reference for 10 term pairs that are frequently misunderstood or used interchangeably.

CategoryTerm ATerm BKey Difference
Prompting TechniqueZero-shotFew-shotZero-shot: ask without examples (faster, cheaper). Few-shot: provide 2–5 examples (more accurate for specific formats or domains).
ReasoningChain-of-ThoughtTree-of-ThoughtCoT: single linear reasoning path. ToT: explores multiple branches, evaluates paths. ToT costs 2–3× more tokens but handles harder problems.
Knowledge ArchitectureRAGFine-tuningRAG: retrieves current data at inference time — no retraining. Fine-tuning: adjusts model weights permanently — expensive, requires labeled data.
SecurityPrompt injectionJailbreakInjection: structural attack — user input overrides system instructions. Jailbreak: behavioral attack — crafted phrasing bypasses safety guardrails.
Sampling ParametersTemperatureTop-pTemperature: scales all token probabilities (0 = deterministic, 1+ = creative). Top-p: samples only from the smallest set of tokens covering probability p. Use one at a time.
MemoryShort-term memoryLong-term memoryShort-term: active conversation context (tokens in window). Long-term: persistent store across sessions (vector DB or key-value). Agents need both.
AlignmentGuardrailRLHFGuardrail: runtime policy enforcement (filter, validate, block) — no retraining. RLHF: training-time alignment via human feedback — rewires model behavior permanently.
Agent BehaviorTool callingAgenticTool calling: single function invocation per turn. Agentic: autonomous loop — decide → call tool → observe → decide — until goal is achieved.
Output QualityHallucinationConfabulationSynonymous in practice. Both describe confident, plausible-sounding but false model output. "Hallucination" is more common in US/tech; "confabulation" in academic/EU contexts.
Prompt ArchitectureSystem promptUser promptSystem: persistent instructions (role, rules, format) — set once per conversation. User: specific task per turn. System controls behavior; user specifies request.

Level

Domain

Learning Paths

Curated term sequences — follow a path to build expertise in one area.

Prompt Engineering Foundations

Beginner

Learn the core vocabulary every AI practitioner needs — from what a prompt is to why models hallucinate.

Customer service chatbotsContent drafting assistantsInternal Q&A toolsDeveloper code review
  1. 1Prompt
  2. 2LLM (Large Language Model)
  3. 3Token
  4. 4Context window
  5. 5System prompt
  6. 6Zero-Shot Prompting
  7. 7Few-Shot Prompting
  8. 8Chain-of-Thought (CoT)
  9. 9Temperature
  10. 10Instruction following
  11. 11Hallucination
  12. 12Output formatting prompt

RAG Mastery

Intermediate

Build retrieval-augmented generation pipelines from chunking strategy to production-grade re-ranking.

Enterprise knowledge basesCustomer support botsLegal document Q&AMedical reference lookup
  1. 1RAG (Retrieval-Augmented Generation)
  2. 2Embedding model
  3. 3Vector database
  4. 4Document chunking
  5. 5Semantic search
  6. 6Hybrid retrieval
  7. 7Reranking model
  8. 8Grounding
  9. 9Context window
  10. 10Prompt Injection

Agent Orchestration

Advanced

Design autonomous agents that plan, use tools, manage memory, and coordinate across multi-agent systems.

Autonomous research agentsCode generation pipelinesMulti-step data analysisAI-powered workflows
  1. 1Agent
  2. 2ReAct Prompting
  3. 3Function calling
  4. 4Memory (Long-Term)
  5. 5Memory (Short-Term)
  6. 6Prompt Chaining
  7. 7LangChain
  8. 8LangGraph
  9. 9Multi-Agent System
  10. 10Long-horizon planning
  11. 11Agent Orchestration
  12. 12Reflection agent

Reasoning Mastery

Intermediate

Master the prompting techniques that unlock reliable multi-step logical and mathematical reasoning.

Math tutoring systemsLegal reasoning toolsComplex debugging assistantsScientific analysis
  1. 1Chain-of-Thought (CoT)
  2. 2Zero-Shot CoT
  3. 3Few-Shot Prompting
  4. 4Automatic CoT (Auto-CoT)
  5. 5Self-Consistency
  6. 6Tree-of-Thought (ToT)
  7. 7Step-back prompting
  8. 8Automatic Prompt Engineer (APE)

Fine-tuning & Alignment

Advanced

Understand when prompts are not enough — and how fine-tuning, RLHF, and alignment techniques change model behavior.

Domain-specific chatbotsBrand voice enforcementMedical/legal specializationSafety-critical systems
  1. 1Fine-Tuning
  2. 2Instruction-tuned model
  3. 3RLHF
  4. 4LoRA
  5. 5Constitutional AI
  6. 6Alignment
  7. 7Hallucination
  8. 8Evals (evaluation suite)

Evaluation & Production

Intermediate

Ship AI features confidently — build eval frameworks, measure quality metrics, and run prompt A/B tests.

CI/CD prompt regression testingQuality monitoring dashboardsA/B prompt experimentsModel selection frameworks
  1. 1Evals (evaluation suite)
  2. 2Benchmark harness
  3. 3LLM-as-a-Judge
  4. 4ROUGE
  5. 5BLEU
  6. 6BERTScore
  7. 7A/B Prompt Test
  8. 8Prompt Versioning

Safety & Security

Intermediate

Build AI systems that resist attacks, avoid harmful outputs, and pass safety audits — from prompt injection to red-teaming.

High-stakes deployment reviewsRed-teaming AI productsCompliance verificationEnterprise AI security
  1. 1Prompt Injection
  2. 2Jailbreak
  3. 3Constitutional AI
  4. 4Safety evaluation framework
  5. 5Bias
  6. 6Red-Teaming
  7. 7Alignment
  8. 8Hallucination

本词汇表涵盖提示工程中最重要的100个术语,从基础概念到代理编排和评估框架。 每个条目都包含为开发人员和AI从业者编写的简洁实用定义,加上用于深入阅读的主要参考链接。

术语分为六个组:提示的核心概念、代理和编排、安全和对齐、评估和测试、高级技术以及指标和生产。使用表格作为快速参考,或按照链接了解实现细节。

关键要点

  • 100个术语分为6个部分:核心概念、代理、安全、评估、高级技术和指标&生产
  • 每个术语包含实用定义和1–3个主要来源引用,用于E-E-A-T验证
  • 涵盖基础技术(CoT、RAG、Few-Shot)到2026年代理模式(多代理、移交、GraphRAG)
  • 15个词汇表术语直接链接到PromptQuorum提示工程中心的专用文章以供深入探索
  • FAQPage模式 + DefinedTermSet模式,用于Google、Claude、Perplexity和其他AI引擎的答案提取

核心提示概念

代理和编排

安全和对齐

评估和测试

高级技术

指标和生产

常见问题

简单来说,提示工程是什么?

提示工程是设计和迭代提示的学科,使语言模型生成有用、可预测和安全的输出。它涉及结构化指令、添加上下文和选择Few-Shot或Chain-of-Thought等技术来改进可靠性和质量。

零样本提示和少样本提示有什么区别?

零样本提示仅使用指令而不使用任何示例要求模型执行任务,最适合模型的先验训练已覆盖模式的常见任务。少样本提示在提示中包含少量输入输出示例,以便模型在处理实际查询之前推断所需的模式、格式或风格。少样本通常对复杂或异寻常的任务产生更高的质量。

AI中RAG意味着什么?

RAG代表检索增强生成。这是一种架构,相关文档从知识库检索并注入到提示中,以便模型基于当前接地数据而不仅仅是训练来回答。这减少了幻觉并确保答案基于真实、当前的信息。

提示工程和微调有什么区别?

提示工程是设计和迭代提示的学科,无需修改模型本身即可导向模型输出。另一方面,微调通过在任务特定数据上训练来修改模型的权重。提示工程更快、更便宜、更易于迭代,但微调可以在专科任务上实现更好的结果,但需要更多的数据和计算资源。

AI中的上下文窗口是什么?

上下文窗口是模型一次可以处理的最大令牌数,包括系统提示、对话历史和检索文档。超过上下文限制会截断或忽略较早或中间部分。理解上下文窗口大小对管理成本和延迟至关重要,因为更长的上下文更昂贵且处理速度更慢。

使用PromptQuorum将这些技术同时应用于25+个AI模型。

免费试用PromptQuorum →

← 返回提示词工程

Prompt Engineering Glossary: 100 Terms Defined for 2026 | PromptQuorum