Quick answer: Gemini 1.5 Pro is Google DeepMind's long-context multimodal model, released February 2024. It introduced an industry-first 2M-token context window — enough to hold an entire large codebase, hours of audio, or thousands of documents in a single prompt — at $1.25/$5 per million tokens for prompts up to 128K. It is the benchmark reference for long-context retrieval and multi-modal processing at scale.
Where Gemini 1.5 Pro leads
Where it lags
Best for: workflows that need to process very long documents, large audio/video files, or multi-file codebases in a single API call — especially when cost per token matters.
Gemini 1.5 Pro was announced on February 15, 2024, and made generally available on May 24, 2024. It is built on a Mixture-of-Experts (MoE) architecture — an approach where the model activates only a subset of its parameters per token, allowing Google DeepMind to scale effective capacity without proportionally increasing compute. This architectural choice is what enabled the 2M-token context window: the model can efficiently attend over much longer sequences than dense transformers of similar inference cost.
The 2M window is the model's defining capability. Google's internal evaluations at launch showed near-perfect (>99%) recall on the "needle in a haystack" test at 1M tokens — a task that requires finding a specific fact buried in an enormous context. This translates to real-world use cases that are impractical on 128K or 200K models: analysing a full codebase during a refactor, processing a 60-minute audio recording end-to-end, or running a RAG system over thousands of documents in a single call.
From a Benchgen perspective, Gemini 1.5 Pro is an important baseline for long-context agent evaluation. Many enterprise workflows involve multi-document research, long transcript processing, or large-file ingestion — tasks where context length is the first bottleneck, not model intelligence. Understanding its performance on BenchGen's Goal Completion and Memory Utilisation dimensions for long-horizon tasks gives teams a cleaner read on whether their bottleneck is context length or model capability.
| Field | Value |
|---|---|
| Organization | Google DeepMind |
| Model type | Multimodal Mixture-of-Experts |
| API identifier | gemini-1.5-pro-002 (latest stable) |
| Access | Closed, API (Google AI Studio, Vertex AI) |
| Context window | 2,000,000 tokens |
| Max output | 8,192 tokens |
| Architecture | Mixture-of-Experts (MoE) transformer |
| License | Proprietary |
| Release date | February 15, 2024 (preview); May 24, 2024 (GA) |
| Knowledge cutoff | November 2023 |
| Modality | Multimodal (text, images, audio, video) |
| Input (per 1M tokens) | Output (per 1M tokens) | |
|---|---|---|
| Google AI Studio (≤128K context) | $1.25 | $5.00 |
| Google AI Studio (>128K context) | $2.50 | $10.00 |
Context caching and batch mode offer additional cost reductions. Source: Google AI pricing.
Gemini 1.5 Pro has a 2,000,000-token context window — roughly 3,000 pages of text, or about 22 hours of audio, in a single request — with a maximum output of 8,192 tokens. This is the defining specification: it allows entire codebases, multi-chapter documents, long legal discovery sets, or full video transcripts to be processed without chunking. Google's internal evaluations reported near-perfect recall on the "needle in a haystack" test at 1M tokens, indicating the model uses rather than merely stores the extended context.
Note: prompts above 128K tokens are billed at double the standard rate ($2.50/$10 per 1M).
| Benchmark | Score | Source | Date |
|---|---|---|---|
| GPQA Diamond | 46.2% | Google DeepMind technical report | 2024-05 |
| MMLU | 85.9% | Google DeepMind technical report | 2024-05 |
| HumanEval | 84.1% | Google DeepMind technical report | 2024-05 |
| MATH | 58.5% | Google DeepMind technical report | 2024-05 |
| Needle-in-a-haystack (1M tokens) | >99% | Google DeepMind technical report | 2024-05 |
Scores are reported by Google DeepMind and shown for context. They are not Benchgen measurements. See the technical report for full harness details.
| Model | Context | GPQA Diamond | MMLU | Price (in/out per 1M, ≤128K) |
|---|---|---|---|---|
| Gemini 1.5 Pro | 2M | 46.2% | 85.9% | $1.25 / $5 |
| GPT-4o | 128K | 53.6% | 88.7% | $2.50 / $10 |
| Claude 3.5 Sonnet | 200K | 65.0% | 88.7% | $3 / $15 |
| Gemini 3 Pro | 1M | — | — | $2 / $12 |
Gemini 1.5 Pro's value proposition is clear: the cheapest per-token price at the frontier tier for short contexts, and the largest context window by a significant margin. It trades off on reasoning depth — GPT-4o and Claude 3.5 Sonnet post meaningfully higher GPQA and coding scores. The choice is whether your task is context-bound or reasoning-bound. (Rival scores from respective provider announcements; not Benchgen measurements.)
Gemini 1.5 Pro's agent profile is shaped by its context window more than its per-step reasoning. For agents that need to hold large state — entire repositories, multi-session conversation history, or large document sets — it removes the chunking and retrieval overhead that clips goal completion rates in shorter-context models. A coding agent that can read a full codebase in context tends to make more coherent diffs and fewer "hallucinated file path" errors than one that retrieves chunks.
Where it is more limited is in the reasoning-per-step quality: its GPQA score of 46.2% reflects a gap versus GPT-4o and Claude 3.5 Sonnet on tasks requiring sustained, multi-hop logical inference. For Benchgen evaluations, teams typically find strong Goal Completion on document-heavy workflows and lower Tool-Call Accuracy on complex, nested tool chains — especially for tasks involving more than 3–4 simultaneous tool dependencies.
import google.generativeai as genai
genai.configure(api_key="YOUR_API_KEY")
model = genai.GenerativeModel("gemini-1.5-pro-002")
response = model.generate_content(
"Summarise the key risks in this contract set: ..."
)
print(response.text)Specs and scores sourced from the Google DeepMind Gemini 1.5 technical report and Google AI pricing. Third-party benchmark scores attributed inline. Last updated 2026-06-19.
Gemini 1.5 Pro is a large language model developed by Google.