惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

雷峰网
雷峰网
Y
Y Combinator Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
博客园_首页
J
Java Code Geeks
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
量子位
C
Check Point Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
N
Netflix TechBlog - Medium
Hugging Face - Blog
Hugging Face - Blog
B
Blog
美团技术团队
Microsoft Security Blog
Microsoft Security Blog
P
Proofpoint News Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
Last Week in AI
Last Week in AI

Vercel News

Vercel Open Source Program: Winter 2026 cohort How Notion Workers run untrusted code at scale with Vercel Sandbox How we run Vercel's CDN in front of Discourse From idea to secure checkout in minutes with Stripe Building Slack agents can be easy Scaling redirects to infinity on Vercel Advancing Python typing Gamma builds design-first agents with Vercel How Avalara turns pipe dreams into patent-pending with v0 Keeping community human while scaling with agents How OpenEvidence built a healthcare AI that physicians actually trust Security boundaries in agentic architectures Skills Night: 69,000+ ways agents are getting smarter Video Generation with AI Gateway We Ralph Wiggumed WebStreams to make them 10x faster How Stably ships AI testing agents in hours, not weeks How we built AEO tracking for coding agents Anyone can build agents, but it takes a platform to run them Introducing Geist Pixel The Vercel AI Accelerator is back with $6m in credits Making agent-friendly pages with content negotiation The Vercel OSS Bug Bounty program is now available Introducing the new v0 Run untrusted code with Vercel Sandbox, now generally available How Stripe built a game-changing app in a single flight with v0 How Sensay went from zero to product in six weeks AGENTS.md outperforms skills in our agent evals Agent skills explained: An FAQ Testing if "bash is all you need" AWS databases are now live on the Vercel Marketplace and v0
Parallel's Web Search and tools are live on Vercel - Vercel
Walter KormanSoftware EngineerJerilyn ZhengProduct, AI Gateway · 2026-02-04 · via Vercel News

You can now use Parallel's LLM-optimized web search and other tools all across Vercel.

Link to headingAI Gateway

Unlike provider-specific web search tools that only work with certain models, Parallel's web search tool works universally across all providers. This means you can add web search capabilities to any model without changing your implementation.

To use through AI SDK, set parallel_search: gateway.tools.parallelSearch() in tools.

import { gateway, streamText } from 'ai';

const result = streamText({

model: 'moonshotai/kimi-k2.5', // Works with any model

prompt: 'What are the best new restaurants in San Francisco?',

tools: {

parallel_search: gateway.tools.parallelSearch(),

},

});

Parallel web search extracts relevant excerpts from web pages, making it ideal for agentic tasks and real-time information retrieval. For more control, you can also configure the tool to use specific parameters.

import { gateway, streamText } from 'ai';

const result = streamText({

model: 'moonshotai/kimi-k2.5',

prompt: 'What new AI model releases have been announced this month?',

tools: {

parallel_search: gateway.tools.parallelSearch({

mode: 'one-shot',

maxResults: 10,

sourcePolicy: {

includeDomains: [

'openai.com',

'anthropic.com',

'deepseek.com',

'moonshot.ai',

'deepmind.google',

],

afterDate: '2026-01-01',

},

}),

},

});

For agentic workflows, use mode: 'agentic' to get concise, token-efficient search results that work well in multi-step reasoning.

Time-sensitive queries can control cache freshness with maxAgeSeconds, while domain-specific search lets you restrict results to trusted sources or exclude noisy domains.

Parallel web search requests are charged at exactly the same rate as the Parallel API. $5 per 1,000 requests (includes up to 10 results per request) and additional results beyond 10 charged at $1 per 1,000 additional results. Read the docs for more information and details on how to use the tool.

Link to headingAI SDK

AI SDK supports Parallel as a tool for both web search and extraction. To use, simply install the parallel-web tool package.

pnpm install @parallel-web/ai-sdk-tools

View the docs for more details on how to utilize the tools.

Link to headingVercel Marketplace

You can utilize all Parallel products: Search, Extract, Task, Findall, and Monitoring in Vercel Agent Marketplace with centralized billing through Vercel and a single API key. To get started, go to the Parallel integration and connect your account or deploy the Next.js template to integrate Parallel's web research APIs with Vercel in action.

Get started with Parallel for your AI applications through AI Gateway, the AI SDK tool package, or Vercel Marketplace.