OpenAI's default image model for most applications. Fast, high-quality generation with natural lighting, rich textures, and support for complex layouts including transparent backgrounds.
from openai import OpenAI client = OpenAI(base_url="https://api.naga.ac/v1", api_key="YOUR_API_KEY") resp = client.images.edit( model="gpt-image-2.5-flare-2026-09-08", image=open("image.png", "rb"), prompt="A cute baby sea otter wearing a beret", n=1, size="1024x1024", response_format="url" ) print(resp.data)