모든 모델콘솔에서 열기
무료로 시작하기
OpenAI GPT Image 2
openaiopenai/gpt-image-2
OpenAI's native multimodal image model. Strong at photorealism, complex scene composition, and prompt adherence. Accepts reference images for editing and compositing.
입력
이미지와 프롬프트
출력
생성된 이미지
도구
MINIMAL
추론
미지원
가격
| 레인 | 100만 토큰당 |
|---|---|
| 입력 | $5.00 |
| 출력 | $30.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="openai/gpt-image-2",
image=image,
prompt="Create a commerce-ready vertical product detail image.",
size="1024x1024",
quality="low",
)
print(len(response.data), response.usage)출시 준비됐나요?
프로젝트를 만들고 API 키를 발급해 OpenAI-compatible 클라이언트에서 이 모델을 호출하세요.