o1
OpenAI logo

O1

o1
OpenAI
OpenAI's most powerful O-series model supports official cache hits that halve the input cost.

Pricing

PricingCache ReadImage GenerationWeb Search
$15.000$60.000
$7.5/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",
    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?

OpenAI's most powerful O-series model supports official cache hits that halve the input cost.