$16.50/$132.00/M
ctx400Kmax272Kavail—tps—
InOutCap
GPT-5 pro uses more compute to think harder and provide consistently better answers.
Our most capable reasoning model, using more compute for the best possible answers on the hardest problems.
GPT-5 pro uses more compute to think harder and provide consistently better answers.
GPT-5 pro uses more compute to think harder and provide consistently better answers.
Snapshot of o3-pro from June 10, 2025. Our most capable reasoning model for the hardest problems.
A reasoning model designed to solve hard problems across domains. Uses chain of thought to think before responding.
Use the OpenAI Python SDK to call this model. Replace your-api-key with your API key.
from openai import OpenAI
client = OpenAI(
base_url="https://api.ohmygpt.com/v1",
api_key="your-api-key", # Replace with your API key
)
response = client.chat.completions.create(
model="o3-pro",
messages=[
{"role": "user", "content": "Hello!"}
],
)
print(response.choices[0].message.content)