모든 모델콘솔에서 열기
무료로 시작하기
Gemini 3.1 Flash Image (Nano Banana 2)
googlegoogle/gemini-3.1-flash-image-preview
Also known as "Nano Banana 2". High-efficiency counterpart to Gemini 3 Pro Image, optimized for speed and high-volume developer use cases. Supports the widest aspect-ratio set (incl. 1:4 / 4:1 / 1:8 / 8:1 banners) and 512-4K resolutions.
입력
이미지와 프롬프트
출력
생성된 이미지
도구
MINIMAL
추론
미지원
가격
| 레인 | 100만 토큰당 |
|---|---|
| 입력 | $0.50 |
| 출력 | $60.00 |
토큰 단위 과금. 최소 금액 없음, 요청당 요금 없음. 지원 프로바이더에서는 캐싱이 적용되며, 미스 시 표준 입출력 단가로 청구됩니다.
퀵스타트
from openai import OpenAI
client = OpenAI(
base_url="https://api.vecbase.com/v1",
api_key="sk-vbc-...",
)
with open("product.jpg", "rb") as image:
response = client.images.edit(
model="google/gemini-3.1-flash-image-preview",
image=image,
prompt="Create a commerce-ready vertical product detail image.",
size="1024x1024",
quality="low",
)
print(len(response.data), response.usage)출시 준비됐나요?
프로젝트를 만들고 API 키를 발급해 OpenAI-compatible 클라이언트에서 이 모델을 호출하세요.