Gemini 3 Pro 제품군의 프리미엄 이미지 생성 모델입니다. 채팅에서 직접 최고 충실도의 이미지를 생성합니다. 이미지 출력 토큰은 텍스트 출력 토큰의 10배 가격이 적용됩니다.
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 2,000 | $2.00 |
| 출력 토큰 | 12,000 | $12.00 |
| 🖼이미지 출력 토큰 | 120,000 | $120.00 |
* 1 크레딧 ≈ $0.001 (실제 요금은 사용량에 따라 달라질 수 있습니다)
curl -X POST "https://api.core.today/llm/gemini/v1beta/openai/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gemini-3-pro-image-preview",
"messages": [
{
"role": "user",
"content": "Explain the principles of color theory and how they apply to digital design."
}
],
"max_tokens": 2000,
"temperature": 0.7
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
messages | array | Yes | - | 메시지 객체 배열 (OpenAI 형식) |
temperature | float | No | 1 | 샘플링 온도 (0-2) |
top_p | float | No | 0.95 | 핵심 샘플링 파라미터 |
max_tokens | integer | No | - | 최대 출력 토큰 수 |
stream | boolean | No | false | Server-Sent Events 스트리밍 활성화 |
Pro 기능을 활용한 표준 텍스트 대화
curl -X POST "https://api.core.today/llm/gemini/v1beta/openai/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gemini-3-pro-image-preview",
"messages": [
{
"role": "user",
"content": "Explain the principles of color theory and how they apply to digital design."
}
],
"max_tokens": 2000,
"temperature": 0.7
}'자연어를 통한 고품질 이미지 생성
curl -X POST "https://api.core.today/llm/gemini/v1beta/openai/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gemini-3-pro-image-preview",
"messages": [
{
"role": "user",
"content": "Generate a photorealistic image of a futuristic city skyline at golden hour, with flying vehicles and vertical gardens on skyscrapers."
}
],
"max_tokens": 4096
}'POST /llm/gemini/v1beta/openai/chat/completions