8.0
热点
AI SCORE
编程提效2026-08-12 08:01
Exa网页搜索在AI Gateway和eve中8月底前免费使用
Vercel Blog#Vercel#Exa#AI搜索
Editor brief · 编辑速览
Vercel AI Gateway集成Exa搜索作为默认Web搜索能力,开发者可免费用至8月31日,无需单独申请API Key。
Exa 网络搜索在 AI Gateway 上截至 8 月 31 日免费使用,同时它已成为 eve agent 的默认网络搜索工具。
该工具可配合任意 AI Gateway 模型使用,无需单独申请 Exa API key。当模型调用它时,AI Gateway 会将请求路由至 Exa 的 Search API,返回网络搜索结果和提取的页面内容,支持域名过滤、日期过滤以及高效的 token 截取。
eve 内置的 web_search 工具在模型通过 AI Gateway 提供服务时,默认使用 Exa。详见 eve 文档中其他支持的搜索配置。
要在 AI SDK 中使用它,只需将 gateway.tools.exaSearch() 传递给 generateText 调用中的 tools 参数:
1import { gateway, generateText, stepCountIs } from 'ai';2const { text } = await generateText({3 model: 'openai/gpt-5.6-terra',4 prompt: 'What are the latest developments in AI this week?',5 tools: {6 exa_search: gateway.tools.exaSearch(),7 },8 stopWhen: stepCountIs(3),9});
通过 Exa 网络搜索在多个工具调用步骤中回答问题
阅读网络搜索文档了解更多详情并开始使用。