Gemini 3 Pro Image
Google logo

Gemini 3 Pro Image

gemini-3-pro-image
Google
New

Pricing

Input price: $2/M, Text output: $12/M, Image output: $120/M (approximately $0.134 per 1K & 2K image, and $0.24 per 4K image)

Input Modalities

  • Text
  • Vision

Context length

  • 65.5K tokens

Max output

  • 32.8K tokens

Capabilities

  • Thinking
  • Streaming
  • Tool calling
  • Web search
  • URL context
  • Code interpreter
  • Computer use
  • File search
  • Memory tool
  • Multimodal output
  • Structured outputs
  • Citations
  • Prompt caching
  • Background mode
  • Server-side sessions

Try this model

Python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AIHUBMIX_API_KEY"],
    base_url="https://shkq.org/v1",
)

response = client.chat.completions.create(
    model="gemini-3-pro-image",
    messages=[
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    max_tokens=1024,
    stream=False,
)

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

Frequently asked questions

What is the context length of Gemini 3 Pro Image?

Gemini 3 Pro Image has a 65,536 token context window. It supports up to 32,768 output tokens.