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

Gemini 3 Pro Image Preview

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

500 크레딧
요청당
프리미엄 이미지 생성 품질
65,536 토큰 컨텍스트 윈도우
32,768 최대 출력 토큰
입력 모달리티: 이미지 + 텍스트
출력 모달리티: 이미지 + 텍스트
이미지 vs 텍스트 출력 토큰 10배 가격
구조화 출력, Thinking, 검색 그라운딩, Batch API

지금 바로 실행해보세요

콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요

로그인 후 사용해보기

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

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

llms.txt

모델 상세 사양

컨텍스트 윈도우
66K
토큰
최대 출력
33K
토큰
학습 데이터
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-최대 출력 토큰 수 (텍스트 + 이미지 합산). 최대값: 32,768. 컨텍스트 윈도우 (입력+출력): 65,536 토큰.
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최대 출력 토큰: 32,768 (텍스트 + 이미지 출력 합산)
2컨텍스트 윈도우 65,536 토큰 — 다른 Gemini 3 Pro 모델보다 훨씬 작음
3이미지 출력 토큰은 $120.00/M (~120,000 크레딧/M) — 텍스트 출력의 10배
41024px 이미지 1장당 약 1,120 출력 토큰 사용 (~134 크레딧/이미지)
5텍스트만 포함된 응답은 표준 텍스트 출력 가격 적용 ($12.00/M)
6함수 호출, 캐싱, 코드 실행, Live API는 미지원
7Gemini 모델 중 최고 이미지 품질 — 프리미엄 시각적 콘텐츠에 활용

사용 사례

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

모델 정보

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

API Endpoint

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