Aurixel
模型/OpenAI/gpt-image-2
OpenAI

GPT Image 2

文本图像生成
上下文
272K
输入
$8
/M tokens
输出
$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.

快速开始

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)

来自 OpenAI 的其他模型