gemini-2.0-flash-thinking-exp-1219
Google logo

gemini-2.0-flash-thinking-exp-1219

Google
The Gemini 2.0 Flash Thinking mode is an experimental model designed to generate the "thinking process" that the model undergoes during its response. Therefore, the Gemini 2.0 Flash Thinking mode possesses 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

    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-1219",
        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-1219?

    The Gemini 2.0 Flash Thinking mode is an experimental model designed to generate the "thinking process" that the model undergoes during its response. Therefore, the Gemini 2.0 Flash Thinking mode possesses stronger reasoning capabilities in its responses compared to the base Gemini 2.0 Flash model.