google/gemini-3-pro-image-preview
Google Nano Banana Pro, backed by Gemini 3 Pro Image, for high-fidelity image generation and editing through the Vertex-compatible OneHop route. Industry-leading in-image text rendering, multi-image blending, identity preservation across subjects, and 2K/4K output. Supports text and image input, returns image output with optional text.
Source: gemini_image_x0.5 · Verified 2026-06-10
Use either ID to call this model via the API.
google/gemini-3-pro-image-previewReplace the ONEHOP_KEY placeholder with your API key. Create one →
from google import genai
# OneHop 兼容 Vertex AI Gemini generateContent 接口
client = genai.Client(
api_key="<ONEHOP_KEY>",
http_options={"base_url": "https://api.onehop.ai/vertex-ai"},
)
response = client.models.generate_content(
model="google/gemini-3-pro-image-preview",
contents="What is the meaning of life?",
)
print(response.text)