openai/gpt-image-2.5-flare
GPT Image 2.5 这一代的速度档,面向快速、高质量的日常图像生成与编辑。支持文本与图片输入,含局部重绘。按 token 计费:文本+图片输入 token 与图片输出 token。适合追求出图速度的批量创意工作。
来源: https://developers.openai.com/api/docs/models/gpt-image-2.5-flare · 核验于 2026-09-09
缓存读 $0.375/M · 缓存写 —/M
API 调用时用任一 ID 都可以。
openai/gpt-image-2.5-flare把 ONEHOP_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-flare",
prompt="A red panda coding under the moonlight",
n=1,
)
print(response.data[0].url)