Fetch multiple Gemini resources
gemini_batch_fetchFetch up to 50 Gemini URLs concurrently, returning responses in order.
Instructions
Fetch multiple Gemini URLs in parallel for improved performance.
Uses asyncio.gather() to fetch all URLs concurrently, which is much faster than fetching them sequentially. Useful for fetching multiple pages or related resources at once.
Args: urls: List of Gemini URLs to fetch (at most 50 per call)
Returns: List of responses in the same order and of the same length as the input URLs, so callers can zip responses to requests by index.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| urls | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |