---
source_url: "https://ai-sdk.dev/resources/tools/parallel"
title: Parallel
mirrored_at: 2026-08-04T15:39:35.280Z
host: ai-sdk.dev
cited_in_42a: true
mirror_canonical: "https://index.42a.ai/ai-sdk.dev/resources/tools/parallel"
---

> **Original source:** https://ai-sdk.dev/resources/tools/parallel

```
import { generateText, stepCountIs } from 'ai';import { searchTool, extractTool } from '@parallel-web/ai-sdk-tools';const { text } = await generateText({  model: 'google/gemini-3-pro-preview',  prompt: 'When was Vercel Ship AI?',  tools: {    webSearch: searchTool,    webExtract: extractTool,  },  stopWhen: stepCountIs(3),});console.log(text);
```