vertex-gemini-3-pro-image-preview

Display Name: Gemini 3 Pro Image Preview
V
VertexAI
Released on Nov 19 12:00 AM

Our native image generation model, optimized for speed, flexibility, and contextual understanding. Text input and output is priced the same as Gemini 3 Pro.

Specifications

Context1,000,000
Maximum Output64,000
Inputtext, image
Outputtext, json, image

Performance (7-day Average)

Uptime
TPS

Pricing

Input$1.80/MTokens
Input Image$1.80/MTokens
Output$10.80/MTokens
Output Image$108.00/MTokens

Usage Statistics

No usage data available for this model during the selected period
View your usage statistics for this model

Code Examples

Use the OpenAI Python SDK to call this model. Replace your-api-key with your API key.

python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.ohmygpt.com/v1",
    api_key="your-api-key",  # Replace with your API key
)

response = client.chat.completions.create(
    model="vertex-gemini-3-pro-image-preview",
    messages=[
        {"role": "user", "content": "Hello!"}
    ],
)

print(response.choices[0].message.content)