vertex-gemini-3-pro-preview-thinking

Display Name: Vertex Gemini 3 Pro Preview (Thinking)
V
VertexAI
Released on Dec 9 12:00 AM

The best model in the world for multimodal understanding, and our most powerful agentic and vibe-coding model yet.

Specifications

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

Performance (7-day Average)

Uptime
TPS

Pricing

Standard
Input$1.40/MTokens
Input Audio$1.40/MTokens
Output$8.40/MTokens
200K Tier
Input$2.80/MTokens
Input Audio$2.80/MTokens
Output$12.60/MTokens

Usage Statistics

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

Similar Models

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-preview-thinking",
    messages=[
        {"role": "user", "content": "Hello!"}
    ],
)

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