Skip to main content
Core.Today
|
GoogleFastHigh

Gemini 2.5 Flash Lite

The cheapest tier of the Gemini 2.5 family, optimized for high-volume, latency-sensitive workloads. Delivers 2.5-generation quality at a fraction of the cost, ideal for classification, extraction, and real-time chat at scale.

186/743credits
input / output ยท per 1M tokens
Cheapest Gemini 2.5-family tier
Optimized for high-volume, latency-sensitive workloads
1,048,576 token context window
65,536 max output tokens
Multimodal input: text, image, video, audio
Function calling, structured outputs

Run it right now

Test this model instantly in the Console Playground โ€” no code required

Sign in to try

Use with AI Assistant

Copy usage instructions for Claude, ChatGPT, or other AI

Model Specifications

Context Window
1.0M
tokens
Max Output
66K
tokens
Training Cutoff
2025-01
Compatible SDK
Google

Capabilities

Vision
Function Calling
Streaming
JSON Mode
System Prompt

Token Pricing (per 1M tokens)

Token TypeCreditsUSD Equivalent
Input Tokens186$0.12
Output Tokens743$0.50

* 1,500 credits โ‰ˆ $1 (actual charges may vary based on usage)

Quick Start

curl -X POST "https://api.core.today/llm/gemini/v1beta/models/gemini-2.5-flash-lite:generateContent" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cdt_your_api_key" \
  -d '{
  "contents": [
    {
      "parts": [
        {
          "text": "Classify the sentiment of this review as positive, negative, or neutral. Respond with just the label.\n\nReview: The product works great but the delivery was slow."
        }
      ]
    }
  ],
  "generationConfig": {
    "temperature": 0,
    "maxOutputTokens": 10
  }
}'

Parameters

ParameterTypeRequiredDefaultDescription
contentsarrayYes-Array of content objects with parts (Gemini native format). Supports text, image, video, and audio inputs.
systemInstructionobjectNo-System instruction to steer model behavior.
generationConfigobjectNo-Generation settings: temperature, topP, maxOutputTokens (max 65,536), stopSequences, responseMimeType, etc.
toolsarrayNo-Function declarations the model can call.

Examples

Quick Classification

Fast, low-cost text classification

curl -X POST "https://api.core.today/llm/gemini/v1beta/models/gemini-2.5-flash-lite:generateContent" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cdt_your_api_key" \
  -d '{
  "contents": [
    {
      "parts": [
        {
          "text": "Classify the sentiment of this review as positive, negative, or neutral. Respond with just the label.\n\nReview: The product works great but the delivery was slow."
        }
      ]
    }
  ],
  "generationConfig": {
    "temperature": 0,
    "maxOutputTokens": 10
  }
}'

Tips & Best Practices

1Cheapest 2.5-family tier โ€” use it when 2.5 Flash quality is more than you need
2Max output tokens: 65,536 โ€” set generationConfig.maxOutputTokens up to this limit
3Context window 1,048,576 tokens (input + output)
4Use temperature 0 for deterministic classification
5Ideal for high-volume, latency-sensitive applications

Use Cases

High-volume chatbots
Real-time classification
Content filtering
Data extraction at scale
Latency-sensitive applications

Model Info

ProviderGoogle
Version2.5
CategoryLLM
Price0.5 credits

API Endpoint

POST /llm/gemini/v1beta/models/gemini-2.5-flash-lite:generateContent
Try in ConsoleBack to Docs