multiagent systems with autogen
1.0.0
该存储库包含基于 AutoGen 框架构建多代理应用程序(由生成式 AI 模型提供支持)的代码示例,并且是 Manning Publications 出版的《Multi-Agent Systems with AutoGen》一书的官方代码存储库。
该书目前可以在曼宁抢先体验计划中预订(目前仅提供前几章)。
立即在 https://mng.bz/eVP9 预订本书。
提示
使用代码mldibia可享受 50% 折扣,有效期至8 月 5 日。
在使用 AutoGen 的多代理系统中,您将了解代理的核心组件(生成 AI 模型、工具、内存、编排),如何使用 AutoGen 框架在 python 代码中实现它们,如何评估、优化和部署它们您的应用程序。总的来说,本书将涵盖:
笔记
如果您从 Manning 网站下载了代码包,请考虑访问 GitHub 上的官方代码存储库:https://github.com/victordibia/multiagent-systems-with-autogen 以获取最新更新。
要下载此代码存储库的副本,请单击“下载 Zip”按钮或从终端运行以下代码。
git clone --depth 1 https https://github.com/victordibia/multiagent-systems-with-autogen.git
本节介绍如何安装必备库,以便您可以使用本书中的笔记本。为了在本书中安全地安装这些库,我们使用了 python 虚拟环境概念。
git clone https://github.com/victordibia/multiagent-systems-with-autogen.git
cd multiagent-systems-with-autogen
python -m venv venv
. ./venv/bin/activate
pip install -r requirements.txt
jupyter lab
此存储库中的代码按章节组织(如表所示)。每一章都包含本书中讨论的各种概念和工具的代码。
章 | 描述 | 代码 |
---|---|---|
1 | 了解多代理系统 | 没有代码 |
2 | 构建您的第一个多代理应用程序 | - 您的第一个多代理应用程序 - 协调代理组 |
3 | 多代理系统的用户体验 (UX) | 没有代码 |
4 | 界面剂 | - 界面库(从头开始构建) - 实现接口代理笔记本 |
如果您对本书或此存储库中的代码有任何疑问或反馈,请随时提出问题。
有关 AutoGen 框架的问题,您还可以访问 AutoGen GitHub 存储库或 AutoGen 文档。
如果您发现这本书或代码对您的研究有用,请考虑引用它:
@book{multiagentsystems2024,
author = {Dibia, Victor and Wang, Chi},
title = {Multi-Agent Systems with AutoGen},
publisher = {Manning},
year = {2024},
isbn = {9781633436145},
url = {https://www.manning.com/books/multi-agent-systems-with-autogen},
github = {https://github.com/victordibia/multiagent-systems-with-autogen}
}