Aurixel
Models/OpenAI/gpt-5.5
OpenAI
NEW

GPT-5.5

TextVisionReasoning
Context
1.1M
Max output
128K
Input
$5
/M tokens
Output
$30
/M tokens

GPT-5.5 is OpenAI’s frontier model designed for complex professional workloads, building on GPT-5.4 with stronger reasoning, higher reliability, and improved token efficiency on hard tasks.

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-5.5",
  messages=[{"role": "user", "content": "Hi!"}],
)
print(resp.choices[0].message.content)

Reasoning effort supported

Append -low / -medium / -high / -xhigh to the model name and the gateway sets the reasoning_effort parameter automatically.

More from OpenAI