Skip to main content
OpenPAI fully integrates every available OpenAI model and keeps the model IDs consistent with the official ones. For live prices, refer to Console → Models.

Chat models

Model IDCategoryContextInput price (per 1M tokens)Output price (per 1M tokens)Key features
gpt-5.5Latest flagship1MSee consoleSee consoleA new class of intelligence for coding and professional work
gpt-5.4Flagship (more affordable)1MSee consoleSee consoleHigh-quality code and general chat, better value
gpt-5.4-miniEconomical400KSee consoleSee consoleStrongest mini for code / computer use / subagents
gpt-5.4-nanoFast & economicalLow-latency, low-cost, high-volume workloads
gpt-4oOlder flagship multimodal128KSee consoleSee consoleVision, tools, JSON, streaming
gpt-4o-miniOlder economical128KSee consoleSee consoleStill available for legacy projects
gpt-3.5-turboOlder economical16KRecommended only for legacy compatibility
OpenAI’s chat capabilities are increasingly centered on the GPT-5.x series, and OpenAI recommends the Responses API for new projects. The GPT-4o series remains callable.

Reasoning models (GPT-5.x / o series)

The GPT-5.x series has built-in reasoning, controlled via reasoning_effort; the o series (o3, o4-mini, etc.) is still available.
Model ID / parameterReasoning effortUse case
gpt-5.5 + reasoning_effort: lowLowSimple reasoning, fast responses
gpt-5.5 + reasoning_effort: mediumMediumBalance of quality and speed
gpt-5.5 + reasoning_effort: highHighComplex logic, math, code
o4-miniMedium-highEconomical reasoning
o3HighStrong reasoning (previous-gen flagship reasoning)
Reasoning models are billed including invisible reasoning_tokens — they aren’t shown in content but count toward usage. Leave headroom when estimating max_completion_tokens.
resp = client.chat.completions.create(
    model="gpt-5.5",
    messages=[{"role": "user", "content": "Prove that √2 is irrational"}],
    reasoning_effort="high",
    max_completion_tokens=4096,
)

Image generation

Model IDTypeNotes
gpt-image-2Image generationLatest generation, highest quality, supports multi-image editing
gpt-image-1Image generationPrevious generation, high quality, supports multi-image editing
dall-e-3Image generationClassic DALL·E 3, sizes like 1024 / 1792
dall-e-2Image generationOlder, cheaper
img = client.images.generate(
    model="gpt-image-2",
    prompt="A black-and-white pencil sketch of a Shiba Inu wearing glasses",
    size="1024x1024",
    n=1,
)
print(img.data[0].url)

Audio

Model IDUse case
whisper-1Speech to text (ASR)
gpt-4o-transcribeHigh-quality transcription
gpt-4o-mini-transcribeEconomical transcription
tts-1Text to speech (standard)
tts-1-hdText to speech (hi-fi)
gpt-4o-mini-ttsNext-gen TTS, more natural voice
curl https://openp.ai/v1/audio/speech \
  -H "Authorization: Bearer $OPENPAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"tts-1","input":"Hello from OpenPAI","voice":"alloy"}' \
  --output speech.mp3

Realtime (voice conversation)

Model IDUse case
gpt-realtime-2Latest realtime voice (with reasoning)
gpt-realtime-1.5High-quality audio in / audio out
gpt-realtime-translateRealtime speech-to-speech translation
gpt-realtime-whisperStreaming speech-to-text
gpt-4o-realtime-previewPrevious-gen realtime multimodal conversation
Endpoint path: wss://openp.ai/v1/realtime?model=gpt-realtime-2, over WebSocket. See the Realtime API docs.

Embeddings

Model IDDimensionsMain scenario
text-embedding-3-small1536 (reducible)General, default recommendation
text-embedding-3-large3072 (reducible)High-quality retrieval
text-embedding-ada-0021536Legacy compatibility

Moderations

omni-moderation-latest — multimodal content-safety classification, free (some accounts must enable it).

Responses API

OpenAI’s newer /v1/responses endpoint unifies conversation state management, suited to agent scenarios. See the Responses API.

Detailed fields