1
0
This commit is contained in:
liushuang 2025-10-09 16:45:44 +08:00
parent dfd51b4463
commit 785fc5da9d

View File

@ -73,10 +73,18 @@
- 核心通过智能体运行时环境使用消息作为多智能体之间的通信载体基于发布订阅的模式在智能体之间实现1对1和1对多的传播形式。
- 亮点命令行代码执行器能够将Python代码块打包成1个文件丢到 Docker 容器执行或者在本机开启1个新的进程执行。这种方式更安全也是 LangGraph
不具备的特性。除此之外,官方提供了一系列多智能体的设计模式,来辅助开发者设计与开发多智能体。
- 补充AutoGen 还提供了一个免费的、本地化部署的 AutoGen Studio 可视化工具,旨在帮助开发团队快速原型化多智能体。
官方提供了以下多智能体设计模式:
> 💡英文名称Concurrent Agents、Sequential Workflow、Group Chat、Handoffs、Mixture of Agents、Multi-Agent Debate、Reflection、Code Execution
> 💡中文名称并发智能体、顺序工作流、群聊、交接源自OpenAI Swarm、混合代理、多智能体辩论、反思模式、代码执行
官方提供了以下多智能体设计模式
- Concurrent Agents并发智能体
- Sequential Workflow顺序工作流
- Group Chat群聊
- Handoffs交接源自OpenAI Swarm
- Mixture of Agents混合代理
- Multi-Agent Debate多智能体辩论
- Reflection反思
- Code Execution代码执行
#### 四、Crew AI
@ -99,4 +107,9 @@
- LangGraph 官方文档https://github.langchain.ac.cn/langgraph/
- LangGraph Platform 官方文档https://github.langchain.ac.cn/langgraphjs/concepts/langgraph_platform/
- LangGraph Platform 定价说明https://langchain.ac.cn/pricing-langgraph-platform
- LangGraph Studio 使用说明https://github.langchain.ac.cn/langgraphjs/concepts/langgraph_studio/
- LangGraph Studio 使用说明https://github.langchain.ac.cn/langgraphjs/concepts/langgraph_studio/
- AutoGen 官方文档https://msdocs.cn/autogen/stable/user-guide/core-user-guide/quickstart.html
- AutoGen 运行时环境https://msdocs.cn/autogen/stable/user-guide/core-user-guide/core-concepts/architecture.html
- AutoGen 主题和订阅消息传递https://msdocs.cn/autogen/stable/user-guide/core-user-guide/core-concepts/topic-and-subscription.html
- AutoGen 多智能体设计模式https://msdocs.cn/autogen/stable/user-guide/core-user-guide/design-patterns/intro.html
- AutoGen Studio 使用教程https://www.aidoczh.com/autogen/stable/user-guide/autogenstudio-user-guide/index.html