-
Book Overview & Buying
-
Table Of Contents
Design Multi-Agent AI Systems Using MCP and A2A
By :
In Chapter 1, we explored foundational concepts in GenAI and agentic systems, including various architectures used in their design. In this chapter, we’ll take a closer look at how AI agents actually function. We’ll examine the key components and subsystems of agentic AI, such as the core agent loop, memory, goal formulation, state management, planning/reasoning, tool use, and feedback mechanisms.
To ease your understanding, the chapter will introduce various concepts or components in an agentic system and discuss their roles. We will then discuss how these components are implemented in an open-source agentic AI framework, AutoGen.
It's important to note again that we will focus on agentic AI systems where all the decision-making, planning, and reasoning is done by a large language model (LLM). Other agentic AI systems are possible, where such logic is implemented in a different way, such as using a rule engine or traditional...