Skip to content
Dashboard

Parallel's Web Search and tools are live on Vercel

Link to headingAI Gateway

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(),
},
});

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',
},
}),
},
});

Link to headingAI SDK

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

Link to headingVercel Marketplace

Ready to deploy?