gemini-2.0-flash-thinking-exp-01-21
Google logo

gemini-2.0-flash-thinking-exp-01-21

Google
The latest version, Gemini 2.0 Flash Thinking mode, is an experimental model designed to generate the "thought process" that the model goes through during its responses. Therefore, Gemini 2.0 Flash Thinking mode has stronger reasoning capabilities in its responses compared to the base Gemini 2.0 Flash model.

Pricing

  • Input Tokens: $0.076 /M tokens
  • Output Tokens: $0.304 /M tokens

Input Modalities

  • Text
  • Vision
  • Audio
  • Video

Output Modalities

  • Text

Capabilities

  • Thinking
  • Long context

Try this model

Python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AIHUBMIX_API_KEY"],
    base_url="https://shkq.org/v1",
)

response = client.chat.completions.create(
    model="gemini-2.0-flash-thinking-exp-01-21",
    messages=[
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    max_tokens=1024,
    stream=False,
)

print(response.choices[0].message.content)

Frequently asked questions

What is gemini-2.0-flash-thinking-exp-01-21?

The latest version, Gemini 2.0 Flash Thinking mode, is an experimental model designed to generate the "thought process" that the model goes through during its responses. Therefore, Gemini 2.0 Flash Thinking mode has stronger reasoning capabilities in its responses compared to the base Gemini 2.0 Flash model.