Google: Gemini 2.5 Flash

由 Google 提供

Gemini 2.5 Flash is Google's state-of-the-art workhorse model, specifically designed for advanced reasoning, coding, mathematics, and scientific tasks. It includes built-in "thinking" capabilities, enabling it to provide responses with greater accuracy and nuanced context handling. Additionally, Gemini 2.5 Flash is configurable through the "max tokens for reasoning" parameter, as described in the documentation (https://openrouter.ai/docs/use-cases/reasoning-tokens#max-tokens-for-reasoning).

支持流式输出最大 66K tokens

模型特性

输入模态

  • file
  • image
  • text

模型参数

最大 Tokens:66K
默认温度:0.7
流式输出:支持

定价信息

积分定价

文本输入:3 积分
图片输入:3 积分
消息输出:8 积分

API 定价

输入价格:$0.300/1K tokens
输出价格:$2.500/1K tokens

使用示例

API 调用示例
curl -X POST "https://chat.chatsking.com/api/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "gemini-2.5-flash",
    "messages": [
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    "max_tokens": 1000,
    "temperature": 0.7
  }'