所有模型在控制台打开
免费开始
Gemini 3 Pro Image (Nano Banana Pro)
googlegoogle/gemini-3-pro-image-preview
Also known as "Nano Banana Pro". Professional-grade asset production with advanced reasoning ("Thinking" mode). Best for complex instructions and high-fidelity text rendering inside images. 1K-4K resolutions.
输入
图片和提示词
输出
生成图片
工具
MINIMAL
推理
否
定价
| 类型 | 每 100 万 token |
|---|---|
| 输入 | $2.00 |
| 输出 | $120.00 |
按 token 计费——无最低消费、无单次请求费;支持缓存的供应商自动启用。
快速开始
from openai import OpenAI
client = OpenAI(
base_url="https://api.vecbase.com/v1",
api_key="sk-vbc-...",
)
with open("product.jpg", "rb") as image:
response = client.images.edit(
model="google/gemini-3-pro-image-preview",
image=image,
prompt="Create a commerce-ready vertical product detail image.",
size="1024x1024",
quality="low",
)
print(len(response.data), response.usage)准备上线了?
创建项目、生成 API 密钥,然后从任何 OpenAI 兼容客户端调用这个模型。