GoogleАудиоАудио

Google: Gemini 2.5 Pro Preview 05-06

google/gemini-2.5-pro-preview-05-06

Gemini 2.5 Pro is Google’s state-of-the-art AI model designed for advanced reasoning, coding, mathematics, and scientific tasks. It employs “thinking” capabilities, enabling it to reason through responses with enhanced accuracy...

Доступна через единый OpenAI-совместимый API AI Gateway: подключайтесь через привычный SDK — меняется только base_url и параметр model. Оплата в рублях, контроль расхода и данные в РФ.

Возможности:ИнструментыJSON-режим

Быстрый старт

Первый запрос к google/gemini-2.5-pro-preview-05-06 — скопируйте и подставьте свой ключ.

from openai import OpenAI

client = OpenAI(
    base_url="https://ai-gatewey.ru/v1",
    api_key="sk-aigate-ваш_ключ",
)

resp = client.chat.completions.create(
    model="google/gemini-2.5-pro-preview-05-06",
    messages=[{"role": "user", "content": "Привет!"}],
)
print(resp.choices[0].message.content)