Skip to main content
Core.Today
|
GoogleMediumUltra

Gemini 2.0 Flash Thinking

Experimental reasoning model with explicit thinking process. Shows step-by-step reasoning for complex problems.

2 credits
per 1K tokens (avg)
1M token context window
Explicit thinking process
Step-by-step reasoning
Enhanced problem solving
Multimodal support

Model Specifications

Context Window
1.0M
tokens
Max Output
8K
tokens
Training Cutoff
2024-06
Compatible SDK
OpenAI, Google

Capabilities

Vision
Function Calling
Streaming
JSON Mode
System Prompt

Token Pricing (per 1M tokens)

Token TypeCreditsUSD Equivalent
Input Tokens150$0.15
Output Tokens600$0.60

* 1 credit โ‰ˆ $0.001 (actual charges may vary based on usage)

Quick Start

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{
  "model": "gemini-2.0-flash-thinking",
  "input": {
    "model": "gemini-2.0-flash-thinking-exp",
    "messages": [
      {
        "role": "user",
        "content": "A train leaves station A at 9 AM traveling at 60 mph. Another train leaves station B (300 miles away) at 10 AM traveling toward A at 80 mph. When and where will they meet?"
      }
    ]
  }
}'

Parameters

ParameterTypeRequiredDefaultDescription
messagesarrayYes-Array of message objects
max_tokensintegerNo-Maximum output tokens

Examples

Complex Problem

Solve with explicit reasoning

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{
  "model": "gemini-2.0-flash-thinking",
  "input": {
    "model": "gemini-2.0-flash-thinking-exp",
    "messages": [
      {
        "role": "user",
        "content": "A train leaves station A at 9 AM traveling at 60 mph. Another train leaves station B (300 miles away) at 10 AM traveling toward A at 80 mph. When and where will they meet?"
      }
    ]
  }
}'

Tips & Best Practices

1Use for problems requiring step-by-step reasoning
2Great for educational applications
3Shows working process transparently
4Experimental model - may change

Use Cases

Complex math problems
Multi-step reasoning
Scientific analysis
Debugging complex code
Strategic planning

Model Info

ProviderGoogle
Version2.0-exp
CategoryLLM
Price2 credits

API Endpoint

POST /llm/openai/v1/chat/completions
Try in PlaygroundBack to Docs