AI Skills AI技能 7h ago Updated 1h ago 更新于 1小时前 50

How AI Engineering Keeps Renaming Itself; The Evolution of AI Engineering, From Prompt to Graph AI工程如何不断自我命名;从提示到图的AI工程演变

The article traces the evolution of AI engineering from prompt engineering to graph engineering, highlighting how the focus has shifted from simple text interactions to complex systems involving tools and agents. Prompt engineering emphasized the importance of wording instructions to unlock a model's capabilities without altering its internal structure. Tool use and agents marked a significant shift by enabling models to perform actions beyond just generating text, through mechanisms like functi 文章回顾了AI工程领域在过去四年中(2022-2026)经历的快速命名演变,从Prompt Engineering到Graph Engineering。 核心观点是这六个标签背后其实是一个连续的过程:工作单元从“句子”(Prompt)扩展到“程序网络”(Graph),难点逐渐从模型本身转移到模型周围的架构。 Tool Use和Agents的出现是关键转折点,标志着AI从“只说话”转变为“能做事”。 Chain of Thought等提示技巧证明了冻结模型的潜力受限于接口而非能力。 行业面临的核心问题是:这些不断变化的名称代表了真正不同的学科,还是同一个想法随着工作复杂化而进行的重新包装?

75
Hot 热度
68
Quality 质量
72
Impact 影响力

Analysis 深度分析

TL;DR

  • The article traces the evolution of AI engineering from prompt engineering to graph engineering, highlighting how the focus has shifted from simple text interactions to complex systems involving tools and agents.
  • Prompt engineering emphasized the importance of wording instructions to unlock a model's capabilities without altering its internal structure.
  • Tool use and agents marked a significant shift by enabling models to perform actions beyond just generating text, through mechanisms like function calling and the ReAct framework.
  • Context engineering, harness engineering, and loop engineering represent intermediate stages that expanded the scope of AI applications by integrating external knowledge and iterative processes.
  • Graph engineering is the latest development, focusing on networks of interconnected programs, indicating a move towards more sophisticated and integrated AI systems.

Why It Matters

Understanding the progression of AI engineering terms and practices is crucial for practitioners and researchers as it reflects the maturation and diversification of AI technologies. This evolution highlights the increasing complexity and capability of AI systems, moving from simple text-based interactions to more dynamic and interactive applications. Staying informed about these developments can help professionals leverage new techniques and tools effectively in their work.

Technical Details

  • Prompt Engineering: Involves crafting precise instructions to guide LLMs (Large Language Models) to produce desired outputs. Techniques include few-shot prompting, role assignment, and step-by-step reasoning prompts.
  • Tool Use and Agents: Introduced the concept of function calling, allowing models to interact with external tools like web searches or databases. The ReAct framework interleaves reasoning and action, enabling models to perform tasks iteratively.
  • Context Engineering: Focuses on enhancing the context provided to models to improve their performance, often involving retrieval augmented generation (RAG) to fetch relevant documents before answering queries.
  • Harness Engineering: Likely involves creating frameworks or environments that manage and optimize the interaction between models and various tools or data sources.
  • Loop Engineering: Refers to designing iterative processes where models can refine their outputs based on feedback or additional information, enhancing the accuracy and reliability of results.
  • Graph Engineering: Represents the current trend of building interconnected systems where multiple AI components communicate and collaborate, forming a network of programs that can handle more complex tasks.

Industry Insight

  • The rapid evolution of AI engineering terms suggests a fast-paced innovation cycle, with each new term reflecting advancements in AI capabilities and applications. Professionals should remain adaptable and continuously update their skills to stay relevant.
  • The shift from prompt engineering to graph engineering indicates a growing emphasis on creating robust, scalable AI systems that can integrate seamlessly with existing infrastructure and workflows. This trend will likely drive the development of more sophisticated AI tools and platforms.
  • As AI systems become more complex, there will be an increased need for interdisciplinary collaboration, combining expertise in software engineering, data science, and domain-specific knowledge to design and implement effective AI solutions.

TL;DR

  • 文章回顾了AI工程领域在过去四年中(2022-2026)经历的快速命名演变,从Prompt Engineering到Graph Engineering。
  • 核心观点是这六个标签背后其实是一个连续的过程:工作单元从“句子”(Prompt)扩展到“程序网络”(Graph),难点逐渐从模型本身转移到模型周围的架构。
  • Tool Use和Agents的出现是关键转折点,标志着AI从“只说话”转变为“能做事”。
  • Chain of Thought等提示技巧证明了冻结模型的潜力受限于接口而非能力。
  • 行业面临的核心问题是:这些不断变化的名称代表了真正不同的学科,还是同一个想法随着工作复杂化而进行的重新包装?

为什么值得看

这篇文章对AI从业者极具价值,因为它揭示了当前AI工程领域术语混乱背后的本质逻辑——即工作复杂度的线性增长。它帮助从业者在不断变化的营销术语中理清技术演进脉络,理解从单纯优化输入指令到构建多程序协作系统的必然趋势,从而避免被短期的概念炒作误导,专注于系统架构能力的提升。

技术解析

  • Prompt Engineering (2022): 核心在于通过精心措辞的文本指令来挖掘大语言模型(LLM)的潜力。关键技巧包括少样本学习(Few-shot prompting)、角色设定以及思维链(Chain of Thought, CoT)。CoT技术表明,要求模型逐步推理而非直接回答,能显著提升其在算术和逻辑任务上的表现,且无需修改模型权重。
  • Tool Use & Agents (2023): 解决了模型无法执行外部操作的局限。Function Calling(工具调用)允许模型结构化地请求外部服务(如搜索、计算);Agent框架(如ReAct模式)将模型置于循环中,使其能够“思考-行动-观察-再思考”,从而实现闭环任务处理。LangChain等框架在此阶段开始流行,用于串联这些步骤。
  • RAG (Retrieval Augmented Generation): 作为获取外部知识的标准方法,在同期出现。它通过在回答前检索相关文档并将其注入上下文,解决了模型知识截止和幻觉问题,是Context Engineering的重要基础。
  • 演进规律: 文中指出一个明确的单向趋势:工作的基本单位越来越大。最初的瓶颈在于如何向模型提问(Prompt),现在的瓶颈在于如何让多个程序和模型协同工作(Graph/Harness)。每一次迭代都将“硬部分”的工作从模型内部推向了外部的结构设计中。

行业启示

  • 关注架构而非仅关注提示词: 随着AI应用从简单的问答转向自动化任务,工程师应将重心从微调Prompt转移到设计更稳健的Agent流程、工具集成和系统编排上。单纯的提示词工程已不足以支撑复杂的业务需求。
  • 警惕术语泡沫,回归本质: AI工程领域的命名速度极快(约每季度一次),但核心目标始终是“让机器做我们想做的事”。从业者应透过Graph、Loop等新名词,识别其是否真正解决了可扩展性、可靠性或自动化程度的问题,避免陷入无意义的概念内卷。
  • 系统性思维成为刚需: 未来的AI竞争不在于单个模型的能力,而在于谁能更好地构建由模型、工具、数据和人类反馈组成的生态系统。企业需要建立支持这种复杂系统开发、测试和维护的工程化基础设施(Engineering Infrastructure)。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

LLM 大模型 Agent Agent Programming 编程