Gemini 3.6 Flash
공급사 정가. 플랫폼 마진 없음, 종량제. 아래는 공식 정가입니다. 로그인한 고객은 /console/pricing 에서 워크스페이스 할인이 반영된 실제 가격을 볼 수 있습니다. 캐시 적중률 70% 기준 실효 입력 단가:$0.555/M. 현행 Gemini 모델은 암시적 캐싱이 기본으로 켜져 있고(캐시 적중 시 자동 할인), 확정적 절감을 위한 스토리지 기반 과금의 명시적 CachedContent API도 제공됩니다.
30초 만에 Gemini 3.6 Flash 사용하기
OpenAI 호환. base_url만 바꾸면 SDK는 그대로. POST /v1/chat/completions
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="gemini-3.6-flash",
messages=[{"role": "user", "content": "Summarize this diff"}],
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.chat.completions.create({
model: "gemini-3.6-flash",
messages: [{ role: "user", content: "Summarize this diff" }],
});
console.log(resp.choices[0].message.content);curl https://synthorai.io/v1/chat/completions \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3.6-flash",
"messages": [{"role": "user", "content": "Hello"}]
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Chat.Completions.New(context.TODO(), openai.ChatCompletionNewParams{
Model: "gemini-3.6-flash",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("gemini-3.6-flash")
.addUserMessage("Summarize this diff")
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));Gemini 3.6 Flash 소개
Gemini 3.6 Flash는 정식 출시(GA) 모델로, Google 문서는 에이전트 시대를 위한 지속적인 프런티어급 지능으로 규정하며 더 높은 속도와 더 낮은 비용에 최적화되어 있습니다.
- 문서에 따르면 복잡한 에이전트 및 멀티모달 작업에서 더 강한 성능을 내면서 3.5 Flash보다 낮은 가격으로 토큰 사용량을 줄입니다.
- 사고와 Computer Use를 포함한 내장 도구 모음을 지원하고 텍스트·이미지·비디오·오디오 입력, 100만 토큰 컨텍스트, 최대 65,536 출력 토큰을 제공합니다.
- 모델 페이지는 이 세대부터 temperature·top_p·top_k가 더 이상 사용되지 않고 무시된다고 안내합니다.
- Synthorai는 OpenAI 호환 채팅 엔드포인트로 제공합니다.
스펙 및 제한
| 최대 출력(벤더 스펙) | 65,536 |
| 모달리티 | text + image + video + audio → text |
| 기능 | tools · structured_output · streaming · vision · batch · caching · reasoning · computer_use |
| 특기 사항 | GA; 1M-token context, 64K max output; thinking plus the full built-in tool suite including Computer Use; officially positioned as stronger on complex agentic and multimodal tasks with lower token usage than 3.5 Flash. Note: temperature/top_p/top_k are deprecated and ignored from this generation. |
| 프롬프트 캐싱 | 자동 + 명시적 · 최소 프리픽스 1,024 토큰 |
출처: Google 공식 문서 ↗
자주 묻는 질문
Gemini 3.6 Flash API는 무료로 사용해 볼 수 있나요?
네, 신규 계정에는 10회의 체험 호출과 최대 $1의 무료 크레딧이 제공되며, 카드 등록이 필요 없습니다. 입력 토큰 $1.5/M 기준으로, 이 크레딧만으로도 Gemini 3.6 Flash에 약 8K 토큰 규모의 요청을 대략 83회 보낼 수 있습니다.
Gemini 3.6 Flash은(는) 무엇에 가장 강한가요?
더 높은 속도, 더 낮은 비용의 프런티어 지능, 그리고 Google 문서 기준 3.5 Flash보다 낮은 토큰 사용량 및 100만 컨텍스트, Computer Use 내장. 전체 내용은 벤더의 공식 릴리스 노트를 정리한 About 섹션을 참고하세요.
Gemini 3.6 Flash의 가격은 얼마인가요?
Synthorai에서 Gemini 3.6 Flash은(는) 입력 토큰 100만 개당 $1.5, 출력 토큰 100만 개당 $7.5입니다. 공급사 정가 그대로이며 플랫폼 마진이 없습니다. 캐시된 입력 토큰은 $0.15/M로 과금됩니다.
Gemini 3.6 Flash은(는) 프롬프트 캐싱을 지원하나요?
네, 자동 캐싱이 기본으로 켜져 있고, 확정적 절감을 위한 명시적 모드도 있습니다. 캐시된 입력 토큰은 $0.15/M로 과금됩니다(미캐시 시 $1.5/M); 캐시되려면 프롬프트에 1,024 토큰 이상의 안정적인 프리픽스가 필요합니다. 프롬프트 캐싱 가이드 →
Gemini 3.6 Flash은(는) 어떻게 이용하나요?
기존 OpenAI SDK의 base_url을 "https://synthorai.io/v1"로 지정하고 model="gemini-3.6-flash"로 설정하면 끝입니다. API 키 하나로 게이트웨이의 모든 모델을 사용할 수 있습니다.