{"@context":"https://schema.org","@type":"NewsArticle","generatedAt":"2026-09-20T16:02:35.289Z","headline":"Google 总结 AI Agents Challenge 中最强提交背后的 4 个工程模式","description":"Google 复盘 AI Agents Challenge 赛事，从各赛道头部提交中提炼出四个工程模式：双向 MCP、事件驱动并发、同标准回退和分层路由。","url":"https://www.aioga.com/news/cmtkbbn6q01j6roz54e8g5zec/","mainEntityOfPage":"https://www.aioga.com/news/cmtkbbn6q01j6roz54e8g5zec/","datePublished":"2026-09-02T16:29:43.000Z","dateModified":"2026-09-02T16:29:43.000Z","inLanguage":"zh-CN","publisher":{"@type":"NewsMediaOrganization","name":"Aioga","url":"https://www.aioga.com"},"citation":["https://developers.googleblog.com/4-engineering-patterns-behind-the-strongest-ai-agents-challenge-submissions","https://aihot.virxact.com/items/cmtkbbn6q01j6roz54e8g5zec"],"canonicalUrl":"https://www.aioga.com/news/cmtkbbn6q01j6roz54e8g5zec/","directAnswer":{"@type":"Answer","text":"Google复盘 AI Agents Challenge，称各赛道头部提交反复出现四类工程模式：双向 MCP、事件驱动并发、同标准回退和分层路由。","url":"https://www.aioga.com/news/cmtkbbn6q01j6roz54e8g5zec/","dateCreated":"2026-09-02T16:29:43.000Z","author":{"@type":"Organization","@id":"https://www.aioga.com/authors/aioga-editorial/#editorial-team","name":"Aioga Editorial Team","url":"https://www.aioga.com/authors/aioga-editorial/"}},"evidence":[{"@type":"CreativeWork","name":"developers.googleblog.com source article","url":"https://developers.googleblog.com/4-engineering-patterns-behind-the-strongest-ai-agents-challenge-submissions","datePublished":"2026-09-02T16:29:43.000Z","provider":{"@type":"Organization","name":"developers.googleblog.com","url":"https://developers.googleblog.com/4-engineering-patterns-behind-the-strongest-ai-agents-challenge-submissions"}},{"@type":"CreativeWork","name":"AIHot archive record","url":"https://aihot.virxact.com/items/cmtkbbn6q01j6roz54e8g5zec","datePublished":"2026-09-02T16:29:43.000Z","provider":{"@type":"Organization","name":"AIHot","url":"https://aihot.virxact.com/items/cmtkbbn6q01j6roz54e8g5zec"}}],"aggregationSource":"Google Developers Blog（RSS）","originalPublisher":{"name":"developers.googleblog.com","url":"https://developers.googleblog.com/4-engineering-patterns-behind-the-strongest-ai-agents-challenge-submissions"},"geoDeepAnswer":null,"article":{"id":"cmtkbbn6q01j6roz54e8g5zec","slug":"cmtkbbn6q01j6roz54e8g5zec","url":"https://www.aioga.com/news/cmtkbbn6q01j6roz54e8g5zec/","title":"Google 总结 AI Agents Challenge 中最强提交背后的 4 个工程模式","title_en":"","summary":"Google 复盘 AI Agents Challenge 赛事，从各赛道头部提交中提炼出四个工程模式：双向 MCP、事件驱动并发、同标准回退和分层路由。","source":"Google Developers Blog（RSS）","sourceUrl":"https://developers.googleblog.com/4-engineering-patterns-behind-the-strongest-ai-agents-challenge-submissions","aiHotUrl":"https://aihot.virxact.com/items/cmtkbbn6q01j6roz54e8g5zec","publishedAt":"2026-09-02T16:29:43.000Z","category":"行业动态","score":72,"selected":true,"articleBody":["We just wrapped the Google for Startups AI Agents Challenge：https://cloud.google.com/blog/topics/startups/startups-are-building-the-agentic-future-with-google-cloud?e=48754805 with thousands of builders shipping agents from around the world, and our panel scored submissions across three tracks.","The “multi-agent-system” was probably the most frequent claim across the submissions, and on closer inspection, some actually were truly sophisticated multi-agent solutions while some others turned out to be a single model working through a chain of prompts with agent names attached.","Across this spectrum though the entries that actually ranked at the top of each track：https://lnkd.in/p/eVKZNj77 kept showing the same handful of engineering decisions and patterns. Here are four of them, worth stealing for your own build. They're pulled from real code submissions and described without names, because this isn't about any one team:","Most submissions used MCP one direction: the agent calls out to a tool server for data. However, one team extended it both ways. Their agent consumed a telemetry database through its own MCP tool layer internally, then exposed that same reasoning as an MCP server other agents could call, so another agent could ask it a question directly, no chat UI built for humans required.","The internal half of this matters on its own, before you even get to the external half. A naive version of this agent would run a SQL query against the telemetry store and dump every row straight into the model's context, and that on a real production database is exactly how a single request blows through your token budget. Going through an MCP tool layer means the agent gets tools to inspect and filter the data programmatically, pulling back a job's execution plan or a specific stack trace rather than an entire table, so the context stays small enough to actually reason over. Mediating database access through tools rather than a raw connection is also what makes the external half of the pattern possible at all. Exposing a tool that only ever returns a bounded, purpose-built answer is safe to hand to a caller you don't control while a raw SQL connection never would be.","That's the decision that changes what the product is. Once the agent's own reasoning already sits behind a tool interface, exposing it externally just means standing up an MCP server in front of the same tools. In this case, that meant a coding agent working in a terminal or an IDE could call the performance agent directly and ask about a specific job, the same way it calls any other tool. A human doesn't have to open a dashboard, describe the problem in a chat box, and copy the answer back into their own workflow. A chat interface is a destination while an MCP server can be infrastructure other agents build on, without anyone writing a second integration for them.","The part that's easy to skip: once you're serving a caller you don't control, that server needs real access control. Anyone who can reach it can now call your reasoning layer directly. A tool surface only your own agent ever calls doesn't need to think about that. A tool surface the outside world can call does.","Do this today: if your agent already talks to its own data over MCP internally, check how much extra work it'd take to expose those same tools externally, before you build a second, human-only API that does the same job.","One team's first version was a linear pipeline: a sensor-monitoring agent called a compliance agent, which called a resident-messaging agent, which called a dispatch agent. It worked fine as a demo. It fell apart on the real use case: catching a fall risk from a change in gait, cross-referencing it against a live drug-interaction database, and getting a message to the right person before the window to act closed.","That's the actual difference in a call chain versus an event bus: in a call chain, total latency is additive, agent one's time plus agent two's plus agent three's, because each one is holding the stack open waiting on the next. On a topic-based bus, two agents that don't depend on each other's output run at the same moment, because neither one is blocking on the other's return. You want this shape wherever your agents run on genuinely different tempos: one polling every few seconds, one making a network call that takes half a second, one that only fires once at the very end. Chain all of that into a single call stack and your fastest agent is still bottlenecked behind whichever one takes longest.","Do this today: check whether two of your agents ever need to react to the same signal. If your architecture makes one wait behind the other to do it, that's a single-threaded system wearing a multi-agent label.","A different team's clinical-reasoning agent ran on Gemini 3.1 Pro. Under real load, Pro started returning 503s. Most other entries would bolt on a retry loop against the same model and move on. Instead, this team built a fallback to Gemini 3.6 Flash with backoff, and ran the response from either model through the exact same validation function before accepting it: a citation check confirming the answer actually named a real clinical guideline, not just plausible-sounding medical language.","The detail worth stealing here isn't the existence of a fallback, it's where the validation lives. It isn't duplicated once for the primary path and once for the fallback path, where it's easy to update one copy and forget the other. There's a single validate_clinical_response() function that both the Pro path and the Flash path are forced to call before either result can leave the agent. Once a response hits that function, it doesn't matter which model produced it, neither one gets a shortcut, and neither can ship an answer that fails the check just because it happened to be the one available when the request came in.","That's what actually prevents a fallback from quietly lowering your bar: not remembering to apply the same standard twice, but making it structurally impossible to apply it only once.","Do this today: go find the code path that runs after your fallback fires. If it skips a validation step the primary path has, you're shipping two different products while only testing one.","Inference cost is probably the most argued-about constraint in AI right now: everyone wants frontier-model reasoning without frontier-model prices on every request. This is one of the cost patterns we actually saw working in production this cycle.","One team measured what was actually eating their inference budget and found it wasn't the hard questions, it was the easy ones: \"where's my order,\" \"cancel my appointment,\" going through the same full model call as genuinely ambiguous requests. Their fix was a three-layer classifier in front of the agent: a local regex pass catches navigational intent at zero tokens, an ambiguous case gets a cheap Gemini call at ten tokens and temperature 0.1 just to classify intent, and only what survives both reaches the full reasoning model. That first pass alone handled more than 40 percent of incoming messages, by their own measurement, before a real model call ever happened. A separate entry applied the same idea to a different pipeline: a fast, cheap model gates and triages an incoming case, escalating only what needs deep reasoning to a slower, pricier model. Don't spend your most expensive model on a decision a cheaper one can already make.","Do this today: look at your own traffic distribution before assuming you need a bigger model. A cheaper first pass usually gets you further.","Looking back at this round of the Challenge, the entries built on Agent Development Kit (ADK)：https://adk.dev/ and driven through the Agents CLI：https://github.com/google/agents-cli were the ones where these patterns showed up most often, mostly because the framework doesn't fight you on concurrency, fallback, or handing a tool to another agent.","Across all these four patterns none of them truly require bigger teams or newer models. They represent sound engineering practices that are frequently overlooked. Also, they compose nicely and complement each other. One team in particular that stood out combined pattern one and pattern three together in the same build: a root agent fanning specialist agents out concurrently, then exposing that whole reasoning layer as an MCP server other agents could call directly.","That's the bar we'll be looking for in the next round: a system that follows these four patterns. But you don’t need to be completing a challenge. Use these patterns in your next build.","Enterprise-Grade Precision for Long-Context Multimodal Embedding Inference on Cloud TPU","Decoding cosmic signals with deep learning and Keras","HeyGen x Google Cloud: Bringing Avatar IV to TPUs"],"articleImages":[{"sourceUrl":"https://storage.googleapis.com/gweb-developer-goog-blog-cms-assets/site/20260817-205152/images/g-dev.svg","alt":"Google for Developers","afterParagraph":0,"url":"/media/articles/cmtkbbn6q01j6roz54e8g5zec/22ba16a4694e57e6.jpg"},{"sourceUrl":"https://storage.googleapis.com/gweb-developer-goog-blog-assets/images/Gemini_Generated_Image_5wdk45wdk45wdk45.original.jpg","alt":"Gemini_Generated_Image_5wdk45wdk45wdk45","afterParagraph":0,"url":"/media/articles/cmtkbbn6q01j6roz54e8g5zec/69ea37b7d02a5120.jpg"},{"sourceUrl":"https://storage.googleapis.com/gweb-developer-goog-blog-assets/images/Gemini_Generated_Image_ffw4viffw4viffw4.original.jpg","alt":"Gemini_Generated_Image_ffw4viffw4viffw4","afterParagraph":7,"url":"/media/articles/cmtkbbn6q01j6roz54e8g5zec/338bd30286592ba2.jpg"},{"sourceUrl":"https://storage.googleapis.com/gweb-developer-goog-blog-assets/images/Gemini_Generated_Image_a3s2xsa3s2xsa3s2.original.jpg","alt":"Gemini_Generated_Image_a3s2xsa3s2xsa3s2","afterParagraph":10,"url":"/media/articles/cmtkbbn6q01j6roz54e8g5zec/d3473006a0a4ee46.jpg"},{"sourceUrl":"https://storage.googleapis.com/gweb-developer-goog-blog-assets/images/Gemini_Generated_Image_riefw6riefw6rief.original.jpg","alt":"Gemini_Generated_Image_riefw6riefw6rief","afterParagraph":14,"url":"/media/articles/cmtkbbn6q01j6roz54e8g5zec/170e97255912fe2d.jpg"},{"sourceUrl":"https://storage.googleapis.com/gweb-developer-goog-blog-assets/images/Gemini_Generated_Image_l9hq26l9hq26l9hq.original.jpg","alt":"Gemini_Generated_Image_l9hq26l9hq26l9hq","afterParagraph":17,"url":"/media/articles/cmtkbbn6q01j6roz54e8g5zec/a0e09b61f5e4b5ee.jpg"}],"mediaStatus":"ok","articleBodyZh":["我们刚刚结束了 Google for Startups AI Agents 挑战赛：https://cloud.google.com/blog/topics/startups/startups-are-building-the-agentic-future-with-google-cloud?e=48754805，全球数千名开发者提交了各类智能代理产品，我们的评审小组对三个赛道的作品进行了评分。","“多代理系统”可能是提交中最常见的宣称，但仔细观察会发现，有些确实是复杂的多代理解决方案，而另一些实际上只是单个模型通过一连串带有代理名称的提示进行工作的方案。","在这个范围中，每个赛道实际排名靠前的作品：https://lnkd.in/p/eVKZNj77 不断显示出相同的几个工程决策和模式。这里列出四个，非常值得在你自己的构建中借鉴。它们摘自真实代码提交，并未指明具体团队，因为重点不是某一个团队：","大多数提交只使用 MCP 的单向功能：代理调用工具服务器获取数据。然而，有一个团队将其扩展为双向。他们的代理通过自己的 MCP 工具层内部访问遥测数据库，然后将相同的推理作为 MCP 服务器公开，其他代理可以直接调用，因此另一个代理可以直接向它提问，无需为人类构建聊天界面。","其中的内部部分本身就很重要，在你还没涉及外部部分之前。如果是一个简单的代理版本，它会对遥测存储运行 SQL 查询并将每一行直接导入模型上下文，而在真正的生产数据库上，这正是一次请求就把你的 token 预算消耗殆尽的方式。通过 MCP 工具层，代理能够使用工具以编程方式检查和过滤数据，提取作业执行计划或特定的堆栈跟踪，而不是整个表，从而保持上下文足够小以供实际推理。通过工具而非直接连接数据库访问，也是使外部模式可行的原因。公开一个始终返回有限、专门构建的答案的工具，是安全的，而原始 SQL 连接永远不能交给你无法控制的调用者。","这是改变产品本质的决策。一旦代理自身的推理已经在工具接口背后，就对外暴露它只是意味着在相同工具前端架设一个MCP服务器。在这种情况下，这意味着一个在终端或IDE中工作的编码代理可以直接调用性能代理并询问特定任务，就像调用任何其他工具一样。人类不必打开仪表板，在聊天框中描述问题，然后将答案复制回自己的工作流程。聊天接口是一个终点，而MCP服务器可以是其他代理构建的基础设施，而无需任何人为它们编写第二个集成接口。","容易被忽略的部分是：一旦你为你无法控制的调用者提供服务，该服务器就需要真正的访问控制。任何能访问它的人现在都可以直接调用你的推理层。一个只有你自己的代理会调用的工具表面不需要考虑这个问题。而一个外部世界可以调用的工具表面则需要考虑。","今天可以这样做：如果你的代理已经在内部通过MCP与自己的数据进行通信，检查在对外暴露这些相同工具需要多少额外工作，然后再去构建第二个仅供人类使用的API来完成同样的工作。","一个团队的第一个版本是线性管道：传感器监控代理调用合规代理，合规代理调用常驻消息代理，常驻消息代理调用调度代理。作为演示效果很好。在真实用例中却崩溃了：捕捉步态变化带来的跌倒风险，将其与实时药物交互数据库交叉核对，并在操作窗口关闭前将信息传达给正确的人。","这就是调用链与事件总线的实际区别：在调用链中，总延迟是累加的，即代理一的时间加上代理二的时间再加上代理三的时间，因为每个代理都在等待下一个代理时保持堆栈开启。在基于主题的总线上，两个不依赖彼此输出的代理可以同时运行，因为彼此都不阻塞对方的返回。无论你的代理运行在真正不同的节奏上，你都希望这种形态：一个每几秒轮询一次，一个进行耗时半秒的网络调用，一个只在最后触发一次。把所有这些链成一个调用栈，你最快的代理仍会被耗时最长的代理阻塞。","今天要做的事情：检查你的两个代理是否曾经需要对同一个信号做出反应。如果你的架构让一个代理必须在另一个之后才能进行响应，那么这就是一个打着多代理标签的单线程系统。","另一个团队的临床推理代理运行在 Gemini 3.1 Pro 上。在实际负载下，Pro 开始返回 503 错误。大多数其他实现会在相同模型上添加重试循环然后继续。相反，这个团队构建了一个到 Gemini 3.6 Flash 的回退方案，并且对任意一个模型的响应都运行同样的验证函数再接受它：一个引用检查，确认答案确实引用了真实的临床指南，而不仅仅是听起来合理的医学语言。","值得借鉴的细节不是回退方案的存在，而是验证函数的位置。它不会在主路径和回退路径各自复制一次，这样容易更新了一个副本而忘记更新另一个。这里有一个单一的 validate_clinical_response() 函数，Pro 路径和 Flash 路径都必须调用它，才能让任何结果离开代理。一旦响应进入该函数，无论哪个模型生成的，都无所谓，没有捷径，也不能因为它是请求到来时唯一可用的模型就提交未通过检查的答案。","这正是防止回退悄悄降低标准的关键：不是忘记在两处应用相同标准，而是结构上不可能只应用一次。","今天要做的事情：找到回退触发后的代码路径。如果它跳过了主路径的验证步骤，你就是在交付两个不同的产品，但只测试了其中一个。","推理成本可能是当前 AI 最争论的约束条件：每个人都希望获得前沿模型的推理能力，但又不想在每次请求上支付前沿模型的价格。这就是我们在本周期生产实践中实际看到的成本模式之一。","有一个团队测量了实际上消耗他们推理预算的是什么，发现并不是难题，而是简单的问题：“我的订单在哪里”，“取消我的预约”，这些都要经过与真正模糊请求相同的完整模型调用。他们的解决方法是在代理前设置三层分类器：本地正则表达式（regex）直接捕获导航意图，不耗费任何令牌；模糊情况调用便宜的Gemini模型，只用十个令牌和温度0.1来分类意图；只有同时通过这两个步骤的请求才会进入完整推理模型。他们自己测量显示，仅第一步就处理了40%以上的来信，在实际模型调用之前。另一个参赛项目将同样的思路应用于不同的流程：快速、便宜的模型用来筛选和分流进入的案例，只将需要深度推理的情况升级到慢而昂贵的模型。不要用最贵的模型来做廉价模型已经能做的决定。","今天就可以做：在假设需要更大模型之前，先查看你自己的流量分布。便宜的第一步通常能走得更远。","回顾本轮Challenge，使用Agent Development Kit (ADK)：https://adk.dev/ 并通过Agents CLI：https://github.com/google/agents-cli 驱动的作品是这些模式最常出现的地方，这主要是因为该框架在并发、回退或者将工具交给其他代理方面不会阻碍你。","在这四种模式中，没有一种真正需要更大的团队或更新的模型。它们代表了经常被忽略的良好工程实践。此外，它们组合得很好，并且相互补充。有一个特别突出的团队，将模式一和模式三结合在同一个构建中：一个根代理并行分发专业代理，然后将整个推理层作为一个MCP服务器暴露，其他代理可以直接调用。","这就是我们下一轮要看的标准：遵循这四种模式的系统。但你不需要完成挑战，在下一次构建中就可以使用这些模式。","面向企业级的TPU云长上下文多模态嵌入推理精度","用深度学习和Keras解码宇宙信号","HeyGen x 谷歌云：将 Avatar IV 带到 TPU"],"translationStatus":"translated","bodyOrigin":"source-page","editorial":{"summary":"Google复盘 AI Agents Challenge，称各赛道头部提交反复出现四类工程模式：双向 MCP、事件驱动并发、同标准回退和分层路由。","background":"赛事吸引了来自世界各地的大量开发者提交代理系统，评审覆盖三个赛道。Google指出，部分“多代理系统”实际只是带有代理名称的提示词链，而头部提交采用了更成熟的工程设计。","viewpoint":"Aioga 判断：双向 MCP 的重点不只是连接工具，也在于把代理自身的推理能力置于可调用的工具接口之后。这样可能减少重复构建面向人的接口，但外部调用会带来访问控制要求。","implications":"可能影响：代理系统若直接把数据库结果全部送入模型，可能增加上下文负担。通过工具进行筛选和返回限定答案，可能有助于控制信息范围；但这不代表系统天然安全，外部工具面仍需要访问控制。","nextStep":"后续观察：应关注四种模式在更多提交和实际系统中的适用边界，尤其是双向 MCP 的权限设计、工具返回范围，以及事件驱动并发、同标准回退和分层路由的具体实现。","evidenceRefs":["title","summary","articleBody","source"],"status":"published","aiGenerated":true,"autoApproved":true,"generatedBy":"aioga-editorial:gpt-5.6-sol","reviewedBy":"aioga-editorial-review:gpt-5.6-sol","generatedAt":"2026-09-02T17:48:38.956Z","sourceHash":"68e629eaf39cd47d","review":{"approved":true,"groundedness":94,"clarity":91,"duplicationRisk":18,"blockingIssues":[],"notes":["正文摘录主要详细支持双向 MCP，其他三种模式主要由来源摘要支持；如需增强可核验性，可补充对应原文段落。","“更成熟的工程设计”属于概括性表述，但未构成事实错误或误导性结论。"]},"validation":{"passed":true,"mode":"ai-auto","revisions":0,"checks":["schema","length","source-attribution","editorial-labels","inference-boundary","low-source-overlap","no-html","independent-ai-review"]}},"tags":["行业动态","Google Developers Blog（RSS）"],"translations":{"zh-CN":{"title":"Google 总结 AI Agents Challenge 中最强提交背后的 4 个工程模式","summary":"Google 复盘 AI Agents Challenge 赛事，从各赛道头部提交中提炼出四个工程模式：双向 MCP、事件驱动并发、同标准回退和分层路由。","category":"行业动态","source":"developers.googleblog.com","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Google 总结 AI Agents Challenge 中最强提交背后的 4 个工程模式 - Aioga AI资讯","description":"Google 复盘 AI Agents Challenge 赛事，从各赛道头部提交中提炼出四个工程模式：双向 MCP、事件驱动并发、同标准回退和分层路由。","url":"https://www.aioga.com/news/cmtkbbn6q01j6roz54e8g5zec/","articleBody":["我们刚刚结束了 Google for Startups AI Agents 挑战赛：https://cloud.google.com/blog/topics/startups/startups-are-building-the-agentic-future-with-google-cloud?e=48754805，全球数千名开发者提交了各类智能代理产品，我们的评审小组对三个赛道的作品进行了评分。","“多代理系统”可能是提交中最常见的宣称，但仔细观察会发现，有些确实是复杂的多代理解决方案，而另一些实际上只是单个模型通过一连串带有代理名称的提示进行工作的方案。","在这个范围中，每个赛道实际排名靠前的作品：https://lnkd.in/p/eVKZNj77 不断显示出相同的几个工程决策和模式。这里列出四个，非常值得在你自己的构建中借鉴。它们摘自真实代码提交，并未指明具体团队，因为重点不是某一个团队：","大多数提交只使用 MCP 的单向功能：代理调用工具服务器获取数据。然而，有一个团队将其扩展为双向。他们的代理通过自己的 MCP 工具层内部访问遥测数据库，然后将相同的推理作为 MCP 服务器公开，其他代理可以直接调用，因此另一个代理可以直接向它提问，无需为人类构建聊天界面。","其中的内部部分本身就很重要，在你还没涉及外部部分之前。如果是一个简单的代理版本，它会对遥测存储运行 SQL 查询并将每一行直接导入模型上下文，而在真正的生产数据库上，这正是一次请求就把你的 token 预算消耗殆尽的方式。通过 MCP 工具层，代理能够使用工具以编程方式检查和过滤数据，提取作业执行计划或特定的堆栈跟踪，而不是整个表，从而保持上下文足够小以供实际推理。通过工具而非直接连接数据库访问，也是使外部模式可行的原因。公开一个始终返回有限、专门构建的答案的工具，是安全的，而原始 SQL 连接永远不能交给你无法控制的调用者。","这是改变产品本质的决策。一旦代理自身的推理已经在工具接口背后，就对外暴露它只是意味着在相同工具前端架设一个MCP服务器。在这种情况下，这意味着一个在终端或IDE中工作的编码代理可以直接调用性能代理并询问特定任务，就像调用任何其他工具一样。人类不必打开仪表板，在聊天框中描述问题，然后将答案复制回自己的工作流程。聊天接口是一个终点，而MCP服务器可以是其他代理构建的基础设施，而无需任何人为它们编写第二个集成接口。","容易被忽略的部分是：一旦你为你无法控制的调用者提供服务，该服务器就需要真正的访问控制。任何能访问它的人现在都可以直接调用你的推理层。一个只有你自己的代理会调用的工具表面不需要考虑这个问题。而一个外部世界可以调用的工具表面则需要考虑。","今天可以这样做：如果你的代理已经在内部通过MCP与自己的数据进行通信，检查在对外暴露这些相同工具需要多少额外工作，然后再去构建第二个仅供人类使用的API来完成同样的工作。","一个团队的第一个版本是线性管道：传感器监控代理调用合规代理，合规代理调用常驻消息代理，常驻消息代理调用调度代理。作为演示效果很好。在真实用例中却崩溃了：捕捉步态变化带来的跌倒风险，将其与实时药物交互数据库交叉核对，并在操作窗口关闭前将信息传达给正确的人。","这就是调用链与事件总线的实际区别：在调用链中，总延迟是累加的，即代理一的时间加上代理二的时间再加上代理三的时间，因为每个代理都在等待下一个代理时保持堆栈开启。在基于主题的总线上，两个不依赖彼此输出的代理可以同时运行，因为彼此都不阻塞对方的返回。无论你的代理运行在真正不同的节奏上，你都希望这种形态：一个每几秒轮询一次，一个进行耗时半秒的网络调用，一个只在最后触发一次。把所有这些链成一个调用栈，你最快的代理仍会被耗时最长的代理阻塞。","今天要做的事情：检查你的两个代理是否曾经需要对同一个信号做出反应。如果你的架构让一个代理必须在另一个之后才能进行响应，那么这就是一个打着多代理标签的单线程系统。","另一个团队的临床推理代理运行在 Gemini 3.1 Pro 上。在实际负载下，Pro 开始返回 503 错误。大多数其他实现会在相同模型上添加重试循环然后继续。相反，这个团队构建了一个到 Gemini 3.6 Flash 的回退方案，并且对任意一个模型的响应都运行同样的验证函数再接受它：一个引用检查，确认答案确实引用了真实的临床指南，而不仅仅是听起来合理的医学语言。","值得借鉴的细节不是回退方案的存在，而是验证函数的位置。它不会在主路径和回退路径各自复制一次，这样容易更新了一个副本而忘记更新另一个。这里有一个单一的 validate_clinical_response() 函数，Pro 路径和 Flash 路径都必须调用它，才能让任何结果离开代理。一旦响应进入该函数，无论哪个模型生成的，都无所谓，没有捷径，也不能因为它是请求到来时唯一可用的模型就提交未通过检查的答案。","这正是防止回退悄悄降低标准的关键：不是忘记在两处应用相同标准，而是结构上不可能只应用一次。","今天要做的事情：找到回退触发后的代码路径。如果它跳过了主路径的验证步骤，你就是在交付两个不同的产品，但只测试了其中一个。","推理成本可能是当前 AI 最争论的约束条件：每个人都希望获得前沿模型的推理能力，但又不想在每次请求上支付前沿模型的价格。这就是我们在本周期生产实践中实际看到的成本模式之一。","有一个团队测量了实际上消耗他们推理预算的是什么，发现并不是难题，而是简单的问题：“我的订单在哪里”，“取消我的预约”，这些都要经过与真正模糊请求相同的完整模型调用。他们的解决方法是在代理前设置三层分类器：本地正则表达式（regex）直接捕获导航意图，不耗费任何令牌；模糊情况调用便宜的Gemini模型，只用十个令牌和温度0.1来分类意图；只有同时通过这两个步骤的请求才会进入完整推理模型。他们自己测量显示，仅第一步就处理了40%以上的来信，在实际模型调用之前。另一个参赛项目将同样的思路应用于不同的流程：快速、便宜的模型用来筛选和分流进入的案例，只将需要深度推理的情况升级到慢而昂贵的模型。不要用最贵的模型来做廉价模型已经能做的决定。","今天就可以做：在假设需要更大模型之前，先查看你自己的流量分布。便宜的第一步通常能走得更远。","回顾本轮Challenge，使用Agent Development Kit (ADK)：https://adk.dev/ 并通过Agents CLI：https://github.com/google/agents-cli 驱动的作品是这些模式最常出现的地方，这主要是因为该框架在并发、回退或者将工具交给其他代理方面不会阻碍你。","在这四种模式中，没有一种真正需要更大的团队或更新的模型。它们代表了经常被忽略的良好工程实践。此外，它们组合得很好，并且相互补充。有一个特别突出的团队，将模式一和模式三结合在同一个构建中：一个根代理并行分发专业代理，然后将整个推理层作为一个MCP服务器暴露，其他代理可以直接调用。","这就是我们下一轮要看的标准：遵循这四种模式的系统。但你不需要完成挑战，在下一次构建中就可以使用这些模式。","面向企业级的TPU云长上下文多模态嵌入推理精度","用深度学习和Keras解码宇宙信号","HeyGen x 谷歌云：将 Avatar IV 带到 TPU"]},"en":{"title":"Google summarizes the 4 engineering patterns behind the strongest submissions in the AI Agents Challenge","summary":"Google reviewed the AI Agents Challenge competition and distilled four engineering patterns from the top submissions in each track: bidirectional MCP, event-driven concurrency, same-standard fallback, and hierarchical routing.","category":"Industry","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Google summarizes the 4 engineering patterns behind the strongest submissions in the AI Agents Challenge - Aioga AI News","description":"Google reviewed the AI Agents Challenge competition and distilled four engineering patterns from the top submissions in each track: bidirectional MCP, event-driven concurrency, sam...","url":"https://www.aioga.com/en/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:04:16.407Z"},"ja":{"title":"GoogleはAIエージェントチャレンジで最強の提出物の背後にある4つのエンジニアリングパターンをまとめた","summary":"Google は AI Agents Challenge 大会を振り返り、各トラックの上位提出物から4つのエンジニアリングパターンを抽出しました：双方向 MCP、イベント駆動の並行処理、同一標準へのフォールバック、階層型ルーティング。","category":"業界動向","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"GoogleはAIエージェントチャレンジで最強の提出物の背後にある4つのエンジニアリングパターンをまとめた - Aioga AIニュース","description":"Google は AI Agents Challenge 大会を振り返り、各トラックの上位提出物から4つのエンジニアリングパターンを抽出しました：双方向 MCP、イベント駆動の並行処理、同一標準へのフォールバック、階層型ルーティング。","url":"https://www.aioga.com/ja/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:04:26.786Z"},"ko":{"title":"Google이 AI Agents Challenge에서 가장 강력한 제출 뒤에 있는 4가지 엔지니어링 패턴을 요약하다","summary":"Google은 AI Agents Challenge 대회를 복기하면서 각 트랙의 상위 제출물에서 네 가지 엔지니어링 패턴을 추출했습니다: 양방향 MCP, 이벤트 기반 병행, 동일 기준 롤백, 계층화 라우팅.","category":"업계 동향","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Google이 AI Agents Challenge에서 가장 강력한 제출 뒤에 있는 4가지 엔지니어링 패턴을 요약하다 - Aioga AI 뉴스","description":"Google은 AI Agents Challenge 대회를 복기하면서 각 트랙의 상위 제출물에서 네 가지 엔지니어링 패턴을 추출했습니다: 양방향 MCP, 이벤트 기반 병행, 동일 기준 롤백, 계층화 라우팅.","url":"https://www.aioga.com/ko/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:05:23.344Z"},"es":{"title":"Google resume los 4 patrones de ingeniería detrás de las presentaciones más fuertes en el Desafío de Agentes de IA","summary":"Google revisa el concurso AI Agents Challenge y extrae cuatro modelos de ingeniería a partir de las principales presentaciones de cada pista: MCP bidireccional, concurrencia basada en eventos, retroceso al mismo estándar y enrutamiento por capas.","category":"Industria","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Google resume los 4 patrones de ingeniería detrás de las presentaciones más fuertes en el Desafío de Agentes de IA - Aioga Noticias de IA","description":"Google revisa el concurso AI Agents Challenge y extrae cuatro modelos de ingeniería a partir de las principales presentaciones de cada pista: MCP bidireccional, concurrencia basada...","url":"https://www.aioga.com/es/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:05:17.541Z"},"fr":{"title":"Google résume les 4 modèles d'ingénierie derrière la soumission la plus performante dans le AI Agents Challenge","summary":"Google a réexaminé le concours AI Agents Challenge et a extrait quatre modèles d'ingénierie à partir des soumissions principales de chaque piste : MCP bidirectionnel, concurrence pilotée par événements, retour en arrière selon le même standard et routage en couches.","category":"Industrie","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Google résume les 4 modèles d'ingénierie derrière la soumission la plus performante dans le AI Agents Challenge - Aioga Actualités IA","description":"Google a réexaminé le concours AI Agents Challenge et a extrait quatre modèles d'ingénierie à partir des soumissions principales de chaque piste : MCP bidirectionnel, concurrence p...","url":"https://www.aioga.com/fr/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:06:19.969Z"},"de":{"title":"Google fasst die 4 Engineering-Modelle hinter den stärksten Einreichungen der AI Agents Challenge zusammen","summary":"Google analysierte die AI Agents Challenge-Wettbewerbe und extrahierte aus den führenden Einreichungen jeder Kategorie vier technische Modelle: bidirektionales MCP, ereignisgesteuerte Parallelität, standardkonformes Zurücksetzen und geschichtete Weiterleitung.","category":"行业动态","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Google fasst die 4 Engineering-Modelle hinter den stärksten Einreichungen der AI Agents Challenge zusammen - Aioga KI-News","description":"Google analysierte die AI Agents Challenge-Wettbewerbe und extrahierte aus den führenden Einreichungen jeder Kategorie vier technische Modelle: bidirektionales MCP, ereignisgesteue...","url":"https://www.aioga.com/de/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:06:06.944Z"},"pt-BR":{"title":"O Google resume os 4 padrões de engenharia por trás das submissões mais fortes no AI Agents Challenge","summary":"O Google revisou o desafio AI Agents Challenge e, a partir das principais submissões de cada pista, extraiu quatro padrões de engenharia: MCP bidirecional, concorrência orientada a eventos, fallback com o mesmo padrão e roteamento em camadas.","category":"行业动态","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"O Google resume os 4 padrões de engenharia por trás das submissões mais fortes no AI Agents Challenge - Aioga Notícias de IA","description":"O Google revisou o desafio AI Agents Challenge e, a partir das principais submissões de cada pista, extraiu quatro padrões de engenharia: MCP bidirecional, concorrência orientada a...","url":"https://www.aioga.com/pt-BR/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:07:06.040Z"},"ru":{"title":"Google подводит итоги 4 инженерных моделей, стоящих за самыми сильными предложениями на конкурсе AI Agents Challenge","summary":"Google пересмотрела соревнование AI Agents Challenge и выделила из ведущих заявок на каждом треке четыре инженерных шаблона: двунаправленный MCP, событийно-ориентированная конкуренция, откат к общему стандарту и многоуровневая маршрутизация.","category":"行业动态","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Google подводит итоги 4 инженерных моделей, стоящих за самыми сильными предложениями на конкурсе AI Agents Challenge - Aioga Новости ИИ","description":"Google пересмотрела соревнование AI Agents Challenge и выделила из ведущих заявок на каждом треке четыре инженерных шаблона: двунаправленный MCP, событийно-ориентированная конкурен...","url":"https://www.aioga.com/ru/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:07:12.896Z"},"ar":{"title":"جوجل يلخص 4 أنماط هندسية وراء أقوى المشاركات في تحدي AI Agents","summary":"جوجل استعرضت مسابقة AI Agents Challenge، واستخلصت من أبرز المشاركات في كل مسار أربعة نماذج هندسية: MCP ثنائي الاتجاه، التزامن المدفوع بالأحداث، التراجع الموحد، والتوجيه الطبقي.","category":"行业动态","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"جوجل يلخص 4 أنماط هندسية وراء أقوى المشاركات في تحدي AI Agents - Aioga أخبار الذكاء الاصطناعي","description":"جوجل استعرضت مسابقة AI Agents Challenge، واستخلصت من أبرز المشاركات في كل مسار أربعة نماذج هندسية: MCP ثنائي الاتجاه، التزامن المدفوع بالأحداث، التراجع الموحد، والتوجيه الطبقي.","url":"https://www.aioga.com/ar/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:08:05.631Z"},"hi":{"title":"Google ने AI एजेंट्स चैलेंज में सबसे मजबूत सबमिशन के पीछे के 4 इंजीनियरिंग पैटर्न का सारांश प्रस्तुत किया","summary":"Google ने AI एजेंट्स चुनौती प्रतियोगिता का पुनरावलोकन किया, और प्रत्येक ट्रैक की शीर्ष प्रस्तुतियों से चार इंजीनियरिंग मॉडल निकाले: द्वि-दिशात्मक MCP, इवेंट-ड्रिवेन समवर्ती, समान मानक वापसी और स्तरीय राउटिंग।","category":"行业动态","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Google ने AI एजेंट्स चैलेंज में सबसे मजबूत सबमिशन के पीछे के 4 इंजीनियरिंग पैटर्न का सारांश प्रस्तुत किया - Aioga AI समाचार","description":"Google ने AI एजेंट्स चुनौती प्रतियोगिता का पुनरावलोकन किया, और प्रत्येक ट्रैक की शीर्ष प्रस्तुतियों से चार इंजीनियरिंग मॉडल निकाले: द्वि-दिशात्मक MCP, इवेंट-ड्रिवेन समवर्ती, समान म...","url":"https://www.aioga.com/hi/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:08:09.411Z"},"it":{"title":"Google riassume i 4 modelli ingegneristici dietro le submission più forti nella AI Agents Challenge","summary":"Google ha ripassato la competizione AI Agents Challenge, estraendo dai principali invii di ciascun percorso quattro modelli di ingegneria: MCP bidirezionale, concorrenza guidata dagli eventi, rollback standard e routing a strati.","category":"行业动态","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Google riassume i 4 modelli ingegneristici dietro le submission più forti nella AI Agents Challenge - Aioga Notizie IA","description":"Google ha ripassato la competizione AI Agents Challenge, estraendo dai principali invii di ciascun percorso quattro modelli di ingegneria: MCP bidirezionale, concorrenza guidata da...","url":"https://www.aioga.com/it/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:08:59.729Z"},"nl":{"title":"Google vat de 4 technische modellen samen achter de sterkste inzending in de AI Agents Challenge","summary":"Google heeft de AI Agents Challenge herzien en uit de topinzendingen van elke track vier technische modellen gedistilleerd: bidirectionele MCP, gebeurtenisgestuurde gelijktijdigheid, terugval naar dezelfde standaard en gelaagde routering.","category":"行业动态","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Google vat de 4 technische modellen samen achter de sterkste inzending in de AI Agents Challenge - Aioga AI-nieuws","description":"Google heeft de AI Agents Challenge herzien en uit de topinzendingen van elke track vier technische modellen gedistilleerd: bidirectionele MCP, gebeurtenisgestuurde gelijktijdighei...","url":"https://www.aioga.com/nl/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:08:54.822Z"},"tr":{"title":"Google, AI Agents Challenge’de en güçlü gönderilerin arkasındaki 4 mühendislik modelini özetledi","summary":"Google, AI Agents Challenge yarışmasını gözden geçirerek, her yarış kategorisinin önde gelen başvurularından dört mühendislik modeli çıkardı: çift yönlü MCP, olay odaklı eşzamanlılık, aynı standart geri dönüş ve katmanlı yönlendirme.","category":"行业动态","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Google, AI Agents Challenge’de en güçlü gönderilerin arkasındaki 4 mühendislik modelini özetledi - Aioga AI Haberleri","description":"Google, AI Agents Challenge yarışmasını gözden geçirerek, her yarış kategorisinin önde gelen başvurularından dört mühendislik modeli çıkardı: çift yönlü MCP, olay odaklı eşzamanlıl...","url":"https://www.aioga.com/tr/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:09:56.529Z"},"vi":{"title":"Google tóm tắt 4 mô hình kỹ thuật đằng sau những bài nộp mạnh nhất trong Thử thách AI Agents","summary":"Google tổng kết cuộc thi AI Agents Challenge, rút ra bốn mô hình kỹ thuật từ các bài nộp hàng đầu trong từng hạng mục: MCP hai chiều, đồng bộ sự kiện song song, hồi lại theo cùng tiêu chuẩn và định tuyến phân tầng.","category":"行业动态","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Google tóm tắt 4 mô hình kỹ thuật đằng sau những bài nộp mạnh nhất trong Thử thách AI Agents - Tin tức AI Aioga","description":"Google tổng kết cuộc thi AI Agents Challenge, rút ra bốn mô hình kỹ thuật từ các bài nộp hàng đầu trong từng hạng mục: MCP hai chiều, đồng bộ sự kiện song song, hồi lại theo cùng t...","url":"https://www.aioga.com/vi/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:10:00.317Z"},"id":{"title":"Google merangkum 4 pola rekayasa di balik pengiriman terkuat dalam Tantangan AI Agents","summary":"Google meninjau kembali kompetisi AI Agents Challenge, mengekstrak empat model rekayasa dari pengajuan teratas di setiap jalur pertandingan: MCP dua arah, konkurensi berbasis peristiwa, rollback dengan standar yang sama, dan routing bertingkat.","category":"行业动态","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Google merangkum 4 pola rekayasa di balik pengiriman terkuat dalam Tantangan AI Agents - Berita AI Aioga","description":"Google meninjau kembali kompetisi AI Agents Challenge, mengekstrak empat model rekayasa dari pengajuan teratas di setiap jalur pertandingan: MCP dua arah, konkurensi berbasis peris...","url":"https://www.aioga.com/id/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:10:49.561Z"},"th":{"title":"Google สรุป 4 รูปแบบวิศวกรรมเบื้องหลังการส่งที่แข็งแกร่งที่สุดใน AI Agents Challenge","summary":"Google ทบทวนการแข่งขัน AI Agents Challenge โดยสกัดรูปแบบวิศวกรรมสี่แบบจากผลงานที่นำในแต่ละสนาม: MCP สองทาง, การขับเคลื่อนพร้อมกันโดยเหตุการณ์, การย้อนกลับไปตามมาตรฐานเดียวกัน และการจัดเส้นทางแบบลำดับชั้น","category":"行业动态","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Google สรุป 4 รูปแบบวิศวกรรมเบื้องหลังการส่งที่แข็งแกร่งที่สุดใน AI Agents Challenge - ข่าว AI Aioga","description":"Google ทบทวนการแข่งขัน AI Agents Challenge โดยสกัดรูปแบบวิศวกรรมสี่แบบจากผลงานที่นำในแต่ละสนาม: MCP สองทาง, การขับเคลื่อนพร้อมกันโดยเหตุการณ์, การย้อนกลับไปตามมาตรฐานเดียวกัน และกา...","url":"https://www.aioga.com/th/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:11:03.675Z"},"pl":{"title":"Google podsumowuje 4 kluczowe wzorce inżynieryjne stojące za najsilniejszymi zgłoszeniami w AI Agents Challenge","summary":"Google przeanalizowało zawody AI Agents Challenge, wyodrębniając z najlepszych zgłoszeń w różnych kategoriach cztery modele inżynieryjne: dwukierunkowy MCP, współbieżność sterowaną zdarzeniami, powrót do tego samego standardu i warstwowe routowanie.","category":"行业动态","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Google podsumowuje 4 kluczowe wzorce inżynieryjne stojące za najsilniejszymi zgłoszeniami w AI Agents Challenge - Aioga Wiadomości AI","description":"Google przeanalizowało zawody AI Agents Challenge, wyodrębniając z najlepszych zgłoszeń w różnych kategoriach cztery modele inżynieryjne: dwukierunkowy MCP, współbieżność sterowaną...","url":"https://www.aioga.com/pl/news/cmtkbbn6q01j6roz54e8g5zec/","contentTranslated":true,"sourceHash":"7b5623afcda13ec2","translatedAt":"2026-09-02T17:11:58.932Z"}},"evidenceTier":"verified-news","reviewStatus":"editorial-selected","indexable":true,"editorialCover":""}}