Share E-Book

构建Agentic AI系统 打造能推理、可规划、自适应的AI智能体 (安贾纳瓦·比斯瓦斯 (Anjanava Biswas) etc.)(Z-Library)

Author 安贾纳瓦·比斯瓦斯 (Anjanava Biswas), 里克·塔鲁克达尔 (Wrick Talukdar)

ai
Language English

当前,人工智能正从“工具赋能”迈向“原生智能”的新阶段,以大模型、Agent、RAG 等为代表的 AI 技术不再局限于为传统系统叠加功能,而是通过重构底层架构与运行逻辑,催生全新智能化应用形态。2025年8月国务院发布的《关于深入实施“人工智能+”行动的意见》更明确要求“培育智能原生新模式新业态,大力发展智能原生技术、产品和服务体系,加快培育底层架构和运行逻辑基于人工智能的智能原生企业”,凸显了这一领域的战略地位。 本书所介绍的 Agentic AI系统正是一种典型的新型智能化软件系统。这种系统以基于大模型的智能化和自治性的Agent 为中心,能推理、会规划、自适应。除此之外,这里的“系统”二字又突出了面向真实场景和现实需求的工程化要求:从外部用户需求看,这类系统需要具有高度的可信性,满足可靠性、安全性、透明性、可解释性以及伦理道德等多个方面的要求;从内部构造方式看,这类系统包含大模型、Agent、知识库、工具等多种不同类型的组成部分,并且包含一系列最佳实践和设计模式。简而言之,就是要通过使用工程化的方法和手段实现高度可信的工程化系统。本书围绕这一主题,从基本原理、关键技术、设计模式、构造方法、可信保障等多个方面展开介绍,并提供了具体的案例分析和实现参考,为Agentic AI系统方面的初学者提供了一个全面和专业性的介绍。本书特别突出了智能体系设计的重要性,包括相关设计模式和设计技巧,这对于工程化系统无疑是特别重要的。同时,本书还特别强调了 Agentic AI系统的信任、伦理和安全问题。在人工智能特别是 Agentic AI技术加速融入每个人的日常生活以及各行各业的当下,强调这些方面的潜在风险以及从工程化设计角度的应对指导无疑是非常重要的。 相信大家读完这本书之后,一定会在了解 Agentic AI系统基本原理的同时,初步体验到如何以工程化目标为导向推动 Agentic AI技术在各行各业的落地应用。

Format EPUB
Size 246.4 KB
182
Views
1
Downloads
0.00
Total Donations

AI Guide

AI Reading Assistant

Whole-book reading guide from stratified index samples; jump to passages in the text

Full assistant
AI guide
【One-Line Pitch】 A practical, engineering-first guide to building trustworthy Agentic AI systems—covering everything from generative AI fundamentals and agent architecture to multi-agent collaboration, trust, and ethics—ideal for developers, ML engineers, and technical leaders who want to move beyond chatbots and deploy autonomous agents that reason, plan, and adapt in real-world environments. 【Book Arc】 - **Opening (~0%–10%)**: Introduces the paradigm shift from "AI as tool" to "AI as native intelligence," framing Agentic AI as a new class of software systems centered on autonomous, LLM-based agents. Sets up the book's core promise: engineering reliable, trustworthy systems, not just demos. - **Early (~10%–30%)**: Lays the theoretical foundation—generative AI models (VAE, GAN, autoregressive models, Transformers), LLM types, and the core principles of agent systems. Establishes the "model-centric to agent-centric" shift and previews the three-part structure: fundamentals, design & implementation, and trust & ethics. - **Middle (~30%–50%)**: Dives into the building blocks of agents: decision-making, planning, reflection, self-introspection, tool use, and function calling. Uses a detailed flight-booking assistant example to show how LLM agents handle multi-step tasks, context management, and user interaction in practice. - **Late (~50%–70%)**: Covers advanced design patterns for multi-agent collaboration (coordinator-worker-delegator models), inter-agent communication, environment modeling, and context switching. Emphasizes how heterogeneous agents cooperate to solve complex problems beyond single-agent capability. - **Ending (~70%–100%)**: Addresses the critical "trust layer": transparency, explainability, uncertainty handling, bias mitigation, user control, and consent. Discusses security risks (adversarial attacks, hallucinations, privacy violations, IP issues), ethical frameworks, and real-world use cases across creative, conversational, robotics, and decision-support domains—closing with AGI prospects and future trends. 【Key Takeaways】 - **Generative AI is the substrate, not the destination** (Early): Understanding VAE, GAN, autoregressive, and Transformer models is essential because they provide the content-creation and pattern-recognition capabilities that agents build upon—but generation alone is not intelligence. - **The shift is from model-centric to agent-centric AI** (Early): The real breakthrough is embedding generative capabilities into architectures that perceive, reason, plan, and act autonomously. This reframing is the book's central thesis and guides all subsequent design choices. - **Reflection and self-introspection are what make agents adaptive** (Middle): Agents that can examine their own reasoning, learn from successes and failures, and explain their decisions are not just more capable—they are the foundation for trustworthy, human-in-the-loop systems. - **Tool use and planning turn LLMs from talkers into doers** (Middle): Function calling, API integration, and hierarchical planning (e.g., HTN) enable agents to execute real-world tasks—like booking flights—rather than merely recommending actions. - **Multi-agent collaboration scales capability** (Late): Patterns like coordinator-worker-delegator show how heterogeneous agents can communicate, negotiate, and cooperate to solve problems no single agent could handle, mirroring human organizational structures. - **Trust is a technical requirement, not an afterthought** (Ending): Transparency, explainability, uncertainty communication, and user control are concrete engineering practices—not abstract ideals—that determine whether agents can be integrated into critical decision loops. - **Security and ethics are inseparable from agent design** (Ending): Adversarial attacks, bias, hallucinations, privacy breaches, and IP risks must be addressed through sandboxing, bias mitigation, human-centered design, and traceability—otherwise capable agents become liabilities. - **Context management is the hidden complexity** (Middle): Updating interaction context, merging new information with existing profiles, timestamping, and switching between contexts are practical challenges that determine whether an agent feels coherent and reliable to users. 【Reading Tips】 - **Skim the generative AI fundamentals (Ch. 1–2) if you're already familiar with LLMs**: The VAE/GAN/Transformer review is solid but standard; focus instead on the agent-specific framing and the flight-booking example that illustrates LLM agent behavior concretely. - **Deep-read the agent architecture chapters (Ch. 3–5)**: This is the core value—reflection, self-introspection, tool use, and planning are where the book's practical engineering insights live. Pay special attention to the algorithms and design patterns. - **Treat the multi-agent collaboration chapter as a design-pattern catalog**: The coordinator-worker-delegator models and communication protocols are directly reusable in real projects; take notes on when each pattern fits. - **Don't skip the trust and ethics chapters (Ch. 8–9)**: Even if you're building internal tools, the sections on transparency, uncertainty handling, and adversarial risks will save you from costly failures in production. - **Use the code examples and GitHub repo actively**: The book is explicitly practice-oriented; run the CrewAI and Jupyter examples rather than just reading them to internalize the patterns. 【Coverage Limits】 This guide synthesizes the book's structure, core concepts, and practical themes from the available excerpts. Detailed code walkthroughs, specific algorithm pseudocode, and chapter-by-chapter exercise solutions are not covered here—refer to the full text and companion GitHub repository for those.

Passage locations

Excerpt 1
及其他工具逻辑 调用酒店 API及其他工具逻辑 调用活动 API及其他工具逻辑 6.4 智能体之间的沟通与协作 7.3.2 环境建模 更新当前交互上下文 重置临时会话数据 将新信息与现有档案合并 更新特定知识类别 Add timestamp and store interaction 寻找相似的过往交互 2. 上...
View in text
Excerpt 2
在有疑问时主动向人类请教。 本书深入探讨了信任、透明性、可解释性和可靠性等关键问题,同时讨论了伦理问题,如偏见和安全性。书中描述了如何实现智能体系统的个性化与情境感知能力,以及这类系统如何规划行动,并根据行动结果做出动态调整。 作为一名在人工智能领域耕耘数十载的专家,我相信本书将成为学生、研究人员和专业人士的宝贵...
View in text
Excerpt 3
网络、自回归模型和Transformer模型。最后,探讨生成式AI的实际应用,并讨论一些与生成式AI相关的局限性和挑战。 本章主要介绍以下内容,为进一步探索由生成式AI驱动的智能体奠定基础。 • 生成式AI简介。 • 生成式AI模型的类型。 • 生成式AI的应用。 • 生成式AI面临的挑战与局限性。 通过本章的学...
View in text
Excerpt 4
息了吗? 是的,我准备好了。我叫约翰·史密斯,出生于1985年5月15日。我的邮箱是 john.smith@email.com,电话号码是555-123-4567。没有特殊要求。 谢谢您提供这些信息,史密斯先生。我已将您的详细信息输入预订系统。以下是我所记录的信息摘要。 · 姓名:约翰·史密斯 最后一步是处理您$...
View in text

Recommended for You

Loading recommended books...
Failed to load, please try again later

Tip the Site

Scan the WeChat Pay or Alipay code to tip. No login required.

WeChat Pay
Alipay
Back to List