<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Federation of Agents (FoA)</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Noto Sans SC', 'Roboto', sans-serif;
background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
color: #ffffff;
line-height: 1.6;
}
.poster-container {
width: 920px;
min-height: 960px;
margin: 0 auto;
padding: 40px;
position: relative;
overflow: hidden;
}
.bg-grid {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
background-size: 20px 20px;
z-index: -1;
}
.bg-circle {
position: absolute;
border-radius: 50%;
background: radial-gradient(circle, rgba(64,169,255,0.2) 0%, rgba(64,169,255,0) 70%);
z-index: -1;
}
.circle-1 {
width: 500px;
height: 500px;
top: -100px;
right: -100px;
}
.circle-2 {
width: 300px;
height: 300px;
bottom: 100px;
left: -50px;
}
.header {
text-align: center;
margin-bottom: 30px;
position: relative;
}
.title {
font-size: 48px;
font-weight: 700;
margin-bottom: 10px;
color: #40a9ff;
text-shadow: 0 0 20px rgba(64, 169, 255, 0.5);
}
.subtitle {
font-size: 24px;
font-weight: 500;
margin-bottom: 15px;
color: #ffffff;
}
.intro {
font-size: 18px;
max-width: 90%;
margin: 0 auto;
padding: 15px;
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
backdrop-filter: blur(5px);
}
.content {
display: flex;
margin-top: 30px;
gap: 20px;
}
.left-column {
flex: 1;
}
.right-column {
flex: 1;
}
.section {
background: rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 20px;
margin-bottom: 20px;
backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.section-title {
font-size: 24px;
font-weight: 700;
margin-bottom: 15px;
color: #40a9ff;
display: flex;
align-items: center;
}
.section-title .material-icons {
margin-right: 10px;
}
.mechanism {
margin-bottom: 15px;
}
.mechanism-title {
font-size: 20px;
font-weight: 500;
margin-bottom: 8px;
color: #91d5ff;
}
.mechanism-desc {
font-size: 16px;
margin-left: 20px;
}
.mechanism-desc li {
margin-bottom: 5px;
}
.tech-list, .result-list {
margin-left: 20px;
}
.tech-list li, .result-list li {
margin-bottom: 8px;
font-size: 16px;
}
.highlight {
color: #40a9ff;
font-weight: 500;
}
.image-container {
text-align: center;
margin: 20px 0;
}
.image-container img {
max-width: 100%;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.comparison {
display: flex;
gap: 20px;
}
.comparison-item {
flex: 1;
background: rgba(255, 255, 255, 0.05);
padding: 15px;
border-radius: 10px;
}
.comparison-title {
font-size: 18px;
font-weight: 500;
margin-bottom: 10px;
color: #91d5ff;
}
</style>
</head>
<body>
<div class="poster-container">
<div class="bg-grid"></div>
<div class="bg-circle circle-1"></div>
<div class="bg-circle circle-2"></div>
<header class="header">
<h1 class="title">Federation of Agents (FoA)</h1>
<h2 class="subtitle">CERN引领AI从被动工具向主动「代理人」演进的革命性框架</h2>
<div class="intro">
FoA是一个分布式编排框架,将静态多代理协调转变为动态、能力驱动的协作,挑战当前单大模型主导的范式
</div>
</header>
<div class="content">
<div class="left-column">
<section class="section">
<h3 class="section-title">
<i class="material-icons">architecture</i>核心机制
</h3>
<div class="mechanism">
<h4 class="mechanism-title">Versioned Capability Vectors (VCVs)</h4>
<ul class="mechanism-desc">
<li>机器可读的代理配置文件</li>
<li>六个组成部分:密集能力嵌入、离散技能表示、资源需求向量、策略合规标识、规范嵌入、版本计数器</li>
<li>通过语义嵌入实现可搜索</li>
</ul>
</div>
<div class="mechanism">
<h4 class="mechanism-title">Semantic Routing</h4>
<ul class="mechanism-desc">
<li>使用分片HNSW索引进行语义匹配</li>
<li>考虑成本、预算和政策约束</li>
<li>选择最合适的代理组合</li>
</ul>
</div>
<div class="mechanism">
<h4 class="mechanism-title">Collaborative Refinement</h4>
<ul class="mechanism-desc">
<li>代理分组到临时集群</li>
<li>进行多轮迭代精炼</li>
<li>提升解决方案质量</li>
</ul>
</div>
</section>
<section class="section">
<h3 class="section-title">
<i class="material-icons">compare_arrows</i>与联邦学习的区别
</h3>
<div class="comparison">
<div class="comparison-item">
<h4 class="comparison-title">FoA</h4>
<p>关注<span class="highlight">推理时</span>的代理编排,而非模型训练</p>
<p>强调动态协作和能力匹配</p>
</div>
<div class="comparison-item">
<h4 class="comparison-title">联邦学习</h4>
<p>关注<span class="highlight">训练时</span>的分布式模型训练</p>
<p>CERN CAFEIN平台专注于联邦学习,与FoA是不同项目</p>
</div>
</div>
</section>
</div>
<div class="right-column">
<section class="section">
<h3 class="section-title">
<i class="material-icons">settings</i>技术实现
</h3>
<ul class="tech-list">
<li>基于MQTT的发布-订阅语义实现可扩展的消息传递</li>
<li>分层HNSW索引支持高效的语义搜索</li>
<li>六阶段执行流程:
<ul>
<li>任务分解</li>
<li>代理匹配</li>
<li>初稿生成</li>
<li>协作精炼</li>
<li>结果综合</li>
<li>最终交付</li>
</ul>
</li>
</ul>
</section>
<div class="image-container">
<img src="https://sfile.chatglm.cn/moeSlide/image/a8/a8341afb.jpg" alt="AI代理编排过程">
</div>
<section class="section">
<h3 class="section-title">
<i class="material-icons">analytics</i>实验结果
</h3>
<ul class="result-list">
<li>在HealthBench Hard基准上:
<ul>
<li>比最佳单模型基线提升<span class="highlight">13倍</span></li>
<li>比无协调集成提升<span class="highlight">6.5倍</span></li>
</ul>
</li>
<li>系统可水平扩展,同时保持一致性能</li>
<li>聚类增强的协作在需要多视角的复杂推理任务中特别有效</li>
</ul>
</section>
</div>
</div>
</div>
</body>
</html>
登录后可参与表态
讨论回复
0 条回复还没有人回复,快来发表你的看法吧!