AI Practices AI实践 7h ago Updated 2h ago 更新于 2小时前 46

Introducing Web Search on Amazon Bedrock for foundation model grounding 为 Amazon Bedrock 基础模型引入网络搜索接地功能

Amazon Bedrock now offers general availability of Web Search as a server-side built-in tool for grounding foundation model responses in current web knowledge The feature uses a multi-source approach combining Amazon's web index (billions of documents) with a built-in knowledge graph for factual queries Web Search is enabled via a single parameter in OpenAI-compatible API calls, eliminating third-party vendor onboarding, API orchestration, and separate SDKs Zero data egress is the default, keepin Amazon Bedrock 正式推出 Web Search 功能,允许基础模型通过内置搜索工具获取最新网络知识,减少幻觉并回答训练数据之外的实时问题 采用多源 grounding 方法,结合 Amazon 运营的数十亿文档网络索引与内置知识图谱,提升事实性问题的回答准确性 通过 OpenAI Responses API 单参数即可启用,无需第三方供应商接入、API 编排或额外安全审查,大幅简化集成流程 默认提供零数据外泄(zero data egress)的企业级合规能力,所有搜索操作在 Amazon Bedrock 基础设施内完成 支持语义片段提取,仅将相关段落注入模型上下文窗口,优化 t

65
Hot 热度
68
Quality 质量
62
Impact 影响力

Analysis 深度分析

TL;DR

  • Amazon Bedrock now offers general availability of Web Search as a server-side built-in tool for grounding foundation model responses in current web knowledge
  • The feature uses a multi-source approach combining Amazon's web index (billions of documents) with a built-in knowledge graph for factual queries
  • Web Search is enabled via a single parameter in OpenAI-compatible API calls, eliminating third-party vendor onboarding, API orchestration, and separate SDKs
  • Zero data egress is the default, keeping all data within AWS infrastructure for enterprise compliance
  • At launch, Web Search is available for OpenAI models served through Amazon Bedrock's next-generation inference engine (Mantle)

Why It Matters

This represents a significant shift in how AI practitioners can access real-time web knowledge without the operational complexity of managing third-party search providers. For enterprise customers, the zero data egress default and built-in compliance features address critical data residency and security concerns that have historically slowed AI adoption in regulated industries.

Technical Details

  • Multi-source grounding: Combines Amazon's continuously refreshed web index spanning billions of documents with a built-in knowledge graph that anchors entities and their relationships, reducing factual inaccuracies in model responses
  • Context-efficient retrieval: Uses semantic snippet extraction to pull only relevant passages from web pages, optimizing for the model's context window and reducing token waste on boilerplate content
  • Single-parameter enablement: Web Search is activated through a single parameter in existing OpenAI-compatible API calls, with no function schema definitions or client-side tool-use loops required
  • IAM-based authentication: Uses existing AWS credentials through the standard credential chain (IAM roles, CLI profiles, or environment variables), with specific permissions needed: bedrock-websearch:InvokeSearch, bedrock-websearch:InvokeFetch, and optionally bedrock-websearch:ExternalWebAccess
  • Server-side search lifecycle: Bedrock handles the entire process—query formulation, content retrieval, snippet injection, and citation generation—returning structured citation annotations with URLs and page titles

Industry Insight

  • AWS is consolidating its AI infrastructure play by making web grounding a native Bedrock capability, potentially reducing developer dependency on third-party search providers like Google Custom Search or SerpAPI
  • The zero data egress default positions Bedrock as a strong choice for regulated industries (finance, healthcare, government) where data residency is a compliance requirement
  • The single-parameter enablement through OpenAI-compatible APIs lowers the barrier to entry for existing OpenAI users looking to add web grounding without architectural changes

TL;DR

  • Amazon Bedrock 正式推出 Web Search 功能,允许基础模型通过内置搜索工具获取最新网络知识,减少幻觉并回答训练数据之外的实时问题
  • 采用多源 grounding 方法,结合 Amazon 运营的数十亿文档网络索引与内置知识图谱,提升事实性问题的回答准确性
  • 通过 OpenAI Responses API 单参数即可启用,无需第三方供应商接入、API 编排或额外安全审查,大幅简化集成流程
  • 默认提供零数据外泄(zero data egress)的企业级合规能力,所有搜索操作在 Amazon Bedrock 基础设施内完成
  • 支持语义片段提取,仅将相关段落注入模型上下文窗口,优化 token 使用并降低响应延迟

为什么值得看

Amazon Bedrock 将 Web Search 作为原生能力集成,解决了 AI 应用开发者长期面临的第三方搜索工具集成复杂、数据合规风险高和运维成本重的问题。这一更新标志着企业级 AI 应用的 grounding 能力从"手动拼装"走向"开箱即用",对构建实时问答、客服机器人和知识增强型应用具有直接参考价值。

技术解析

  • 多源 grounding 架构:Web Search 底层由 Amazon 运营的持续更新的网页索引(数十亿文档)和内置知识图谱组成。对于事实性问题(如书籍作者、事件年份),优先使用知识图谱提供高置信度答案,而非让模型从网页文本片段中自行推断,从而减少事实性错误。
  • 上下文高效检索:采用语义片段提取(semantic snippet extraction)技术,从每个网页中精准抽取与查询相关的段落,以优化后的格式返回给模型,避免将整页内容(含大量无关信息)注入上下文窗口,节省 token 并降低延迟。
  • 单参数启用机制:通过 OpenAI Responses API 原生支持内置工具,开发者只需在请求中添加 Web Search 工具参数即可启用,无需定义函数 schema、构建客户端工具调用循环或管理外部 API。
  • 权限与认证体系:使用现有 AWS 凭证链(IAM 角色、CLI profile 或环境变量)进行认证,无需单独配置 API Key。需要两类权限:Bedrock 推理权限(AmazonBedrockMantleInferenceAccess 策略)和 Web Search 工具权限(bedrock-websearch:InvokeSearch,可选 InvokeFetch 和 ExternalWebAccess)。
  • 零数据外泄合规:默认配置下所有数据操作均在 AWS 环境内完成,不产生数据外泄,满足企业合规要求。未来新增功能如需暴露数据,需用户显式请求。

行业启示

  • Grounding 能力标准化:云厂商正在将 RAG/搜索 grounding 能力内化为平台原生功能,开发者无需再自行集成第三方搜索服务,这将加速 AI 应用从"实验原型"向"生产级合规应用"的演进。
  • 企业合规成为核心竞争点:零数据外泄、内置权限管控和无需第三方安全审查的特性,表明 AWS 将企业级合规作为差异化卖点,未来更多 AI 服务将围绕数据主权和合规性展开竞争。
  • 简化集成推动 AI 应用普及:单参数启用、无需额外 SDK 和编排层的设计显著降低了 Web Search 集成的技术门槛,预计将催生更多实时知识增强型 AI 应用,特别是在金融、法律和客服等对时效性和准确性要求高的领域。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

LLM 大模型 RAG 检索增强生成 Product Launch 产品发布 Deployment 部署