Files
myWiki/concepts/decentralized-agent-architecture.md

50 lines
1.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: 去中心化Agent架构
created: 2026-05-01
updated: 2026-05-01
type: concept
tags: [llm, architecture]
sources: [papers/song-agent-network-taxonomy.md]
---
# 去中心化Agent架构 (Decentralized Agent Architecture)
> 不存在区分协调者,协调通过 peer 级交互或共享媒体涌现的多 Agent 架构模式。是 [[agent-network-topology]] 的一个分支。
## 形式定义
无区分控制器:
```
∄ a_c ∈ V
E^(t+1) = Φ(E^(t), o^(t)) // 分布式更新
Π^(t+1) = Γ(Π^(t), o^(t)) // 无中心节点
```
## 子类别
1. **全局+静态**:共享黑板模式 (LLMBlackBoard, MemorySharing)
2. **全局+动态**:动态共享市场 (GPTSwarm, AgentSociety, OpenAgents)
3. **局部+静态**:固定局部交互 (MMAgent, WebArena, TalkHier)
4. **局部+动态**:涌现式社交 (Generative Agents, AgentNet, SOTOPIA-S)
## 优势与劣势
| 优势 | 劣势 |
|------|------|
| 水平扩展能力强 | 协调效率低 |
| 无单点故障 | 一致性难以保证 |
| 适合大规模社会模拟 | 上下文漂移风险 |
| 鲁棒性高 | 通信开销 O(N²) 最坏 |
## 新兴趋势
- **Peer-to-Peer (P2P) 通信层**rust-libp2p、DHT 发现、gossipsub 发布-订阅
- **MCP 标准化**Model Context Protocol 作为去中心化网络的统一基板
- **图神经网络路由**G-Designer 使用 GNN 自动设计通信拓扑
## 相关概念
- [[agent-network-topology]] — 拓扑维度
- [[centralized-agent-architecture]] — 对偶架构
- [[agent-communication-stack]] — 通信协议栈
- [[song-agent-network-taxonomy]] — 父论文