Skip to content
Google · Released 2026-05-24

Gemini 3.5 Flash LLM

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

Gemini 3.5 Flash is Google’s fast and efficient multimodal model, combining advanced coding, reasoning, and agentic capabilities with the speed and affordability of the Flash family. Designed for scalable AI workflows, it supports text, image, video, audio, and PDF inputs, making it ideal for coding assistants, automation, and multi-agent applications. With medium thinking effort enabled by default, Gemini 3.5 Flash delivers an optimized balance between intelligence, speed, and cost. Developers can adjust thinking levels from minimal to high to fine-tune performance for different use cases.

Pricing

USD · live rate
Pricing USD / M
Input $1.50
Output $9.00
Cache hit $0.15
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 $1.50 $9.00 $0.15 3953ms 10868 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.5-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