GPT-5.4 is OpenAI’s latest frontier model, unifying the Codex and GPT lines into a single system.
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.4",
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.