Gemini 2.5 제품군에서 가장 저렴한 티어로, 대량·지연 민감 워크로드에 최적화되어 있습니다. 2.5 세대 품질을 훨씬 낮은 비용으로 제공하며, 대규모 분류·추출·실시간 챗에 적합합니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 186 | $0.12 |
| 출력 토큰 | 743 | $0.50 |
* 1,500 크레딧 ≈ $1 (실제 요금은 사용량에 따라 달라질 수 있습니다)
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
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
contents | array | Yes | - | parts를 포함한 content 객체 배열 (Gemini 네이티브 형식). 텍스트·이미지·비디오·오디오 입력을 지원합니다. |
systemInstruction | object | No | - | 모델 동작을 제어하는 시스템 지시. |
generationConfig | object | No | - | 생성 설정: temperature, topP, maxOutputTokens (최대 65,536), stopSequences, responseMimeType 등. |
tools | array | No | - | 모델이 호출할 수 있는 함수 선언 목록. |
빠르고 저렴한 텍스트 분류
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
}
}'