google/gemini-3-pro-image-preview
Google Nano Banana Pro,底层为 Gemini 3 Pro Image,通过 OneHop Vertex 兼容入口进行高保真图像生成与编辑。业界领先的图内文字渲染、多图融合、跨主体身份保持,支持 2K/4K 输出。支持文本和图片输入,可输出图片并可附带文本。
来源: gemini_image_x0.5 · 核验于 2026-06-10
API 调用时用任一 ID 都可以。
google/gemini-3-pro-image-preview把 ONEHOP_KEY 占位符替换为你的 API Key。 创建 →
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)