Content feed of the TransferLab — appliedAI Institute 06月18日 21:18
Practical Introduction to Agentic AI
index_new5.html
../../../zaker_core/zaker_tpl_static/wap/tpl_guoji1.html

 

本文介绍了一个关于Agentic AI开发的研讨会,涵盖了构建模块、架构设计、工具使用、实践框架和实际部署等关键内容。研讨会旨在帮助开发者掌握构建智能、自主系统的技能,包括核心架构模式(如ReAct、Tree of Thoughts、Plan & Execute)、工具集成、Agent-Computer Interface(ACI)设计以及使用LangChain和Dify.ai等框架的实践经验。通过理论知识与实际操作相结合,参与者将能够构建完整的Agentic工作流程,并在实际业务环境中部署和应用。

🧠 Agentic AI的核心在于其自主性、目标导向行为以及学习和适应能力,这与传统的AI和生成式AI有所不同。研讨会重点关注如何构建能够推理、反思和解决多步问题的Agentic系统。

🛠️ 研讨会强调工具设计与Agent-Computer Interface(ACI)的重要性,ACI决定了工具对AI代理的有效性,设计不佳的ACI是代理失败的主要原因。学习如何设计和集成工具,使代理能够可靠地与API、数据库和其他外部系统交互。

💻 研讨会提供使用LangChain和Dify.ai等主流框架的实践经验,并比较了不同框架的优缺点。参与者将通过构建一个完整的Agentic工作流程,将理论知识转化为实践技能,包括定义代理角色、实现推理架构、创建具有强大ACI和记忆的自定义工具,以及编排整个工作流程。

🚀 研讨会还讨论了实际部署的挑战,包括快速原型设计和利益相关者参与。学习如何使用低代码和可视化界面加速开发周期,并确保代理解决正确的问题并与业务价值保持一致。

Master foundational architectural patterns, tool integration, and hands-on implementation with popular libraries and practical considerations for agentic AI development.

The field of generative Artificial Intelligence is experiencing a paradigm shifttowards Agentic AI. Unlike traditional AI’s reactive, task-specific nature orgenerative AI’s content-generation capabilities, Agentic AI systems arecharacterized by their autonomy, goal-directed behavior, and capacity to learnand adapt. This represents a significant advancement in workflow automation,enabling systems to operate within defined boundaries to enhance efficiency andfoster innovation.

This evolution fundamentally alters the GenAI developer’s role. Instead ofprescribing precise instructions, GenAI developers become architects ofautonomous decision-making spaces. Their focus shifts to defining goals, settingboundaries, and providing tools, thereby empowering the AI to determine thespecific sequence of actions needed to achieve its objectives.

This workshop aims to provide practitioners with the architectural thinking andpractical skills necessary to navigate this new paradigm and constructintelligent, autonomous systems.

Learning Objectives

Agentic systems become powerful byproviding them with the ability to retrieve from external information, tools forinteracting with their environment, and providing them with memory of the pastconversations.

Upon completion, participants will be equipped to:

Architect Autonomous Systems: Move beyond simple scripts to master corearchitectural patterns—including ReAct, Tree of Thoughts, and Plan & Execute—tobuild agents capable of reasoning, reflection, and solving multistep problems.

Engineer Robust Tool-Use: Design and integrate tools that serve as the handsand eyes of an agent. Learn the principles of the Agent-Computer Interface (ACI)to ensure agents can reliably interact with APIs, databases, and other externalsystems.

Build with Production-Grade Frameworks: Gain hands-on experience withleading frameworks such as LangChain & LangGraphbut also low-code alternatives such as Dify.ai, covering thetrade-offs and practical considerations of each. We will translate theoreticalknowledge into practical skills by building a complete, real-world agenticworkflow.

Deploy with Confidence: Navigate the challenges of development andunderstandability, including techniques for rapid prototyping and stakeholderengagement.

Structure of the Workshop

Routing is a central building blockwithin agentic systems, allowing the system to dynamically decide which path tofollow.

Part 1: Building-blocks & Architecture of Agentic AI Systems

This section establishes the conceptual foundation for agentic systems, coveringtheir core components and the sophisticated cognitive architectures that enablereasoning.

Fundamental Building Blocks: The workshop will detail the essential patternsfor composing agentic workflows such as

    Orchestration: Coordinating multiple-possibly specialized-AI agentsto achieve a shared objective.

    Parallelization: Executing multiple tasks concurrently to enhance systemefficiency, either by dividing a large task into independent subtasks(sectioning) or by having multiple agents perform the same task for robust,aggregated results (voting).

    Routing: Intelligently delegating tasks to the most appropriatespecialized agent or routing the chatflow.

    Evaluator-Optimizer Loops (Reflection): Establishing a self-correctionloop where a generator agent iteratively refines its output based on anevaluator agent’s feedback against defined criteria.

Advanced Reasoning Architectures: The curriculum then advances to thecognitive architectures that structure an agent’s thought process. Beyond basicagent design, advanced reasoning architectures are crucial for structuring anagent’s cognitive process. These include ReAct, which connects reasoningwith tool use to ground an agent’s thoughts and reduce errors. Tree ofThoughts allows agents to explore multiple reasoning paths simultaneously,mimicking human trial-and-error for complex problem-solving. For continuousimprovement without fine-tuning, Reflexion enables agents to learn from pastfailures. Finally, Plan & Execute decouples high-level strategic planningfrom low-level action execution, improving performance on long, multistep tasksby maintaining a coherent strategy.

ReAct, combining reasoning and acting, allowsenables the agent to retrieve further information on a task using tools, andanswering the query only once it feels ready to do so.

This section focuses on the critical discipline of designing the interfacebetween an agent’s reasoning engine and its ability to act in the world. Toolsare what transform a reasoning model into a functional actor, allowing it toaccess real-time information, execute code, and interact with proprietaryenterprise systems.

The central theme of this section is the ACI. Just as a Human-Computer Interface(HCI) determines the usability of traditional software for a human, the ACIdetermines the effectiveness of tools for an AI agent. A poorly designed ACI isa primary source of agent failure.

This section is dedicated to translating theory into practice. Participants willbuild a complete agentic workflow applying the introduced concepts usingindustry-standard frameworks, gaining practical skills that are immediatelyapplicable in a professional context.

Navigating the Framework Ecosystem: The workshop will provide an overview ofthe popular frameworks, highlighting their core philosophies and ideal use casesto inform architectural decisions.

Hands-On Project: Participants will apply the concepts from Part 1 and Part2 by building an agentic system. The project will involve defining agentroles, implementing a reasoning architecture, creating custom toolswith robust ACIs and memory, and orchestrating the entire workflow. A keycomponent of this project will be the visualization of the agent’s structureand their decision-making process, allowing participants to see how the agentoperates in real-time.

Part 4: Practical Considerations for Real-World Deployment

The final part bridges the gap between a working prototype and a reliable,scalable, and trustworthy enterprise application.It addresses the pragmatic challenges that arise when deploying agentic AI ina business context.

Rapid Prototyping: The workshop will discuss tools that accelerate thedevelopment cycle, including low-code and visual interfaces. Such approachesallow for the rapid creation, management, and testing of agentic workflowsthrough drag-and-drop interfaces, enabling faster iteration and experimentation.

Participatory Design: Furthermore, such approaches can be used to includestakeholders directly in the engineering of the agents to ensure that they solvethe right problems and align with business values.

Prerequisites

The training extends on the use of Large Language Models and therefore requiresbasic knowledge on prompting such. However, we will do our best to providepointers and short introductions of the key concepts involved in each part suchthat everybody should be able to follow. More importantly, in order to fullybenefit from our practical exercises, participants should have a basicunderstanding of Python and feel comfortable writing smaller parts ofPython code.

Fish AI Reader

Fish AI Reader

AI辅助创作,多种专业模板,深度分析,高质量内容生成。从观点提取到深度思考,FishAI为您提供全方位的创作支持。新版本引入自定义参数,让您的创作更加个性化和精准。

FishAI

FishAI

鱼阅,AI 时代的下一个智能信息助手,助你摆脱信息焦虑

联系邮箱 441953276@qq.com

相关标签

Agentic AI 架构 工具 LangChain Dify.ai
相关文章