Aurixel
Models/OpenAI/gpt-image-2
OpenAI

GPT Image 2

TextImage generation
Context
272K
Input
$8
/M tokens
Output
$15
/M tokens

GPT Image 2 is OpenAI's image generation model, pairing high-fidelity image output with strong prompt adherence and in-context editing.

Quick start

python
from openai import OpenAI

client = OpenAI(
  api_key="$CK_KEY",
  base_url="https://conduit-api.aurixel.ai/v1",
)
resp = client.chat.completions.create(
  model="gpt-image-2",
  messages=[{"role": "user", "content": "Hi!"}],
)
print(resp.choices[0].message.content)

More from OpenAI