Google

Gemini 2.5 Pro API

US Google
プレイグラウンドで試す → APIキーを取得

Gemini 2.5 Proは、Googleのフラッグシップモデルです。マルチモーダルビジョンを提供し、MeshTok統合APIを通じて利用可能です。

画像動画音声推論ツールJSONフラッグシップ

料金 (公式、1Mトークンあたり)

入力
$1.25/M
出力
$10.00/M

仕様

コンテキストウィンドウ1048.576K トークン 入力モダリティ画像, 動画, 音声 ストリーミングはい APIOpenAI互換

Gemini 2.5 Proの使い方

OpenAIの直接代替。base_urlとモデルのみ変更。

# Python - pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://meshtok.com/v1",
    api_key="sk-your-MeshTok-key",
)

resp = client.chat.completions.create(
    model="google/gemini-2.5-pro",
    messages=[{"role":"user","content":"Hello!"}],
)
print(resp.choices[0].message.content)
# cURL
curl https://meshtok.com/v1/chat/completions \
  -H "Authorization: Bearer sk-your-MeshTok-key" \
  -H "Content-Type: application/json" \
  -d '{"model":"google/gemini-2.5-pro","messages":[{"role":"user","content":"Hello!"}]}'

関連モデル

検討できる他のモデル。