O1 Pro
OpenAI logo

O1 Pro

o1-pro
OpenAI
The o1 series of models are trained with reinforcement learning to think before they answer and perform complex reasoning. The o1-pro model uses more compute to think harder and provide consistently better answers.

Pricing

PricingCache ReadImage GenerationWeb Search
$150.000$600.000
$150/M tokens-$0.01/request

Input Modalities

  • Text

Output Modalities

  • Text

Capabilities

  • Thinking

Try this model

Python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AIHUBMIX_API_KEY"],
    base_url="https://aihubmix.com/v1",
)

response = client.chat.completions.create(
    model="o1-pro",
    messages=[
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    max_tokens=1024,
    stream=False,
)

print(response.choices[0].message.content)

Frequently asked questions

What is O1 Pro?

The o1 series of models are trained with reinforcement learning to think before they answer and perform complex reasoning. The o1-pro model uses more compute to think harder and provide consistently better answers.