Skip to content
Google · Released 2025-12-18

Gemini 3 Flash Preview LLM

Context 1M Max output 66K Type LLM Provider Google Vertex
google/gemini-3-flash

Gemini 3 Flash Preview is Google’s fast, efficient thinking model for agentic workflows, coding, and interactive AI applications. It delivers near-Pro-level reasoning and tool-use performance with lower latency and cost, making it ideal for multi-turn conversations, autonomous agents, and collaborative development. With a 1 million token context window, multimodal input support (text, images, audio, video, and PDFs), configurable thinking levels, structured outputs, tool calling, and context caching, Gemini 3 Flash Preview provides a strong balance of intelligence, speed, and efficiency.

Pricing

USD · live rate
Pricing USD / M
Input $0.50
Output $3.00
Cache hit $0.05
Image input

Providers

Same model, multi-channel live comparison · best values highlighted
Provider Context Max output Input /M Output /M Cache /M Latency Throughput
Google Vertex 1M 66K $0.50 $3.00 $0.05 8013ms 1310 t/s
OpenRouter 1M 66K $0.50 $3.00 $0.05 5026ms 65 t/s

API example

Model Center normalizes requests and responses across providers behind one OpenAI-compatible API.

Call this model directly or through the OpenAI SDK — one API key for every model in the catalog.

Get API Key Get API Key
from openai import OpenAI

client = OpenAI(
    base_url="https://router-integration.test.cogfoundry.ai/api/v1",
    api_key="$MODEL_CENTER_API_KEY",
)

completion = client.chat.completions.create(
    model="google/gemini-3-flash",
    messages=[{"role": "user", "content": "Which number is larger, 9.11 or 9.8?"}],
    stream=True,
)

for chunk in completion:
    if chunk.choices and chunk.choices[0].delta.content is not None:
        print(chunk.choices[0].delta.content, end="", flush=True)

More from Google