Nano Banana Pro (Gemini 3 Pro Image)
Nano Banana Pro (Gemini 3 Pro Image) (Nano Banana Pro) is Google's advanced native image generation model built for professional and creative workflows, with accurate diagram labeling, web-search-grounded imagery, and higher resolution output.
import { generateText } from 'ai'
const result = await generateText({ model: 'google/gemini-3-pro-image', prompt: 'Render a picture of a red balloon.',});Frequently Asked Questions
Why does this model use
generateTextinstead ofgenerateImage?Nano Banana Pro (Gemini 3 Pro Image) is a multimodal model, not a dedicated image generation API. It returns both text and image files in a single response. In the AI SDK, you call
generateTextand then iterate overresult.filesto access the generated images.What types of diagrams can this model generate with accurate labels?
The model handles architectural schematics, data flow charts, and similar technical visualizations where text annotations must be precisely placed and readable.
How does web search integration work for image generation?
The model can query Google's index at generation time to retrieve current visual reference data. This helps render lesser-known landmarks, recent events, or real-world objects accurately rather than relying solely on training data.
What resolution does Nano Banana Pro (Gemini 3 Pro Image) support?
Nano Banana Pro (Gemini 3 Pro Image) generates higher resolution images compared to the base Nano Banana model. Check the model specs on this page for current resolution and pricing details.
Can I use this model with multiple input images for compositing?
Yes. Nano Banana Pro (Gemini 3 Pro Image) introduces higher multi-image input limits specifically to support compositing workflows where multiple reference images must be combined into a single generated output.
Do I need a Google account to use this model on AI Gateway?
No. AI Gateway manages all provider credentials. You authenticate via a Vercel API key or OIDC token and AI Gateway routes requests to the appropriate provider automatically.
How is Nano Banana Pro (Gemini 3 Pro Image) different from the base Nano Banana model?
Nano Banana Pro (Gemini 3 Pro Image) targets advanced and professional use cases. It adds diagram labeling accuracy, web-search grounding for up-to-date imagery, higher resolution output, and higher multi-image input limits. These capabilities are not available in the base flash-tier image model.
Can I receive both text and image output in the same request?
Yes. Because this is a multimodal model using
generateText, a single request returnsresult.textfor any written content andresult.filescontaining the generated images, allowing mixed-media responses in one API call.