openai/gpt-image-2.5-sunburst
OpenAI's most capable image model, tuned for workflows where editing precision matters most. Generates and edits images from text and image input, with inpainting support. Token-based billing: text + image input tokens and image output tokens. Use it for detailed edits and demanding creative direction.
出典: https://developers.openai.com/api/docs/models/gpt-image-2.5-sunburst · 確認日 2026-09-09
キャッシュ読み取り $0.375/M · キャッシュ書き込み —/M
どちらの ID を使っても API でこのモデルを呼び出せます。
openai/gpt-image-2.5-sunburstONEHOP_KEY プレースホルダーをご自身の API Key に置き換えてください。 作成する →
from openai import OpenAI
client = OpenAI(
base_url="https://api.onehop.ai/v1",
api_key="<ONEHOP_KEY>",
)
response = client.images.generate(
model="openai/gpt-image-2.5-sunburst",
prompt="A red panda coding under the moonlight",
n=1,
)
print(response.data[0].url)