多智能体协作架构深度解析:MCP + A2A 协议栈,构建企业级 Multi-Agent 系统
2026/6/5 17:56:05
// 等待DOM更新后,将class的dom滚动到可视区域 setTimeout(() => { const activeMonthElement = document.querySelector('.month-text.active'); if (activeMonthElement) { activeMonthElement.scrollIntoView({ behavior: 'smooth', block: 'nearest', inline: 'center' }); } }, 0);