Skip to main content
Core.Today
|
Google보통울트라

Gemini 3 Pro Image Preview

Gemini 3 Pro 제품군의 프리미엄 이미지 생성 모델입니다. 채팅에서 직접 최고 충실도의 이미지를 생성합니다. 이미지 출력 토큰은 텍스트 출력 토큰의 10배 가격이 적용됩니다.

500 크레딧
요청당
프리미엄 이미지 생성 품질
채팅 응답 내 네이티브 이미지 생성
단일 응답에서 텍스트와 이미지 출력
이미지 vs 텍스트 출력 토큰 10배 가격
고급 멀티모달 추론

AI 어시스턴트에서 사용하기

이 모델의 사용법을 Claude, ChatGPT 등에 복사

llms.txt

모델 상세 사양

컨텍스트 윈도우
1M
토큰
최대 출력
66K
토큰
학습 데이터
January 2025
호환 SDK
OpenAI, Google AI

기능 지원

비전
함수 호출
스트리밍
JSON 모드
시스템 프롬프트
이미지 생성

토큰별 가격 (1M 토큰당)

토큰 종류크레딧달러 환산
입력 토큰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
}'

파라미터

파라미터타입필수기본값설명
messagesarrayYes-메시지 객체 배열 (OpenAI 형식)
temperaturefloatNo1샘플링 온도 (0-2)
top_pfloatNo0.95핵심 샘플링 파라미터
max_tokensintegerNo-최대 출력 토큰 수
streambooleanNofalseServer-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
}'

팁 & 모범 사례

1이미지 출력 토큰은 $120.00/M (~120,000 크레딧/M) — 텍스트 출력의 10배
21024px 이미지 1장당 약 1,120 출력 토큰 사용 (~134 크레딧/이미지)
3텍스트만 포함된 응답은 표준 텍스트 출력 가격 적용 ($12.00/M)
4Gemini 모델 중 최고 이미지 품질 — 프리미엄 시각적 콘텐츠에 활용

사용 사례

고충실도 이미지 생성
창의적 디자인 및 일러스트레이션
자연어를 통한 이미지 편집
비주얼 스토리텔링
제품 시각화 및 목업

모델 정보

제공자Google
버전3.0-preview
카테고리LLM
가격500 크레딧

API Endpoint

POST /llm/gemini/v1beta/openai/chat/completions
Playground에서 테스트문서로 돌아가기