openai/gpt-image-2.5-flare
OpenAI's speed tier of the GPT Image 2.5 generation, built for fast, high-quality everyday image generation and editing. Takes text and image input and supports inpainting. Token-based billing: text + image input tokens and image output tokens. Use it for high-volume creative work where turnaround matters.
Kaynak: https://developers.openai.com/api/docs/models/gpt-image-2.5-flare · Doğrulandı: 2026-09-09
Cache okuma $0.375/M · Cache yazma —/M
API çağrısında her iki ID de kullanılabilir.
openai/gpt-image-2.5-flareONEHOP_KEY yer tutucusunu API key'inizle değiştirin. Oluşturun →
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)