GoogleFrontierNew

Gemini 2.5 Pro

Google's most capable model with advanced reasoning and a massive context window. Excellent for complex research, long-document analysis, and multi-step problem solving.

4.7(7,600 ratings)

Quick Overview

CategoryGeneral Purpose
Context Window1M tokens
SpeedStandard
Input$4 / 1M tokens
Output$11 / 1M tokens

Pricing

Simple, transparent token-based pricing. Pay only for what you use.

Input Tokens
$4
per 1M tokens
Output Tokens
$11
per 1M tokens

Capabilities

Core strengths and supported features of Gemini 2.5 Pro.

Text Generation
Code
Analysis
Vision
Reasoning

Performance

Context window capacity and inference speed characteristics.

Context Window

1M

Extended context window suitable for processing long documents, large codebases, and multi-turn conversations with extensive history.

Speed: Standard

Balanced speed and quality. Well-suited for production workloads that need a good balance between response quality and latency.

Quick Start

Get started with Gemini 2.5 Pro in just a few lines of code.

import OriginalPoint from "originalpoint";

const client = new OriginalPoint({
  apiKey: process.env.ORIGINALPOINT_API_KEY,
});

const response = await client.chat.completions.create({
  model: "gemini-2.5-pro",
  messages: [
    {
      role: "user",
      content: "Hello, how can you help me today?",
    },
  ],
  max_tokens: 1024,
});

console.log(response.choices[0].message.content);