O3 Global
OpenAI logo

O3 Global

o3-globalllms.txt
OpenAI

Pricing

  • Input Tokens: $2.000 /M tokens
  • Output Tokens: $8.000 /M tokens
  • Cache Read: $0.500 /M tokens

Input Modalities

    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="o3-global",
        messages=[
          {
            "role": "user",
            "content": "Hello, how are you?"
          }
        ],
        max_tokens=1024,
        stream=False,
    )
    
    print(response.choices[0].message.content)

    Frequently asked questions

    How much does O3 Global cost?

    On AIHubMix, O3 Global costs $2 per million input tokens and $8 per million output tokens. Cached input reads are billed at $0.5 per million tokens.