You can now use Parallel's LLM-optimized web search and other tools all across Vercel. Link to heading AI 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.…