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}
}