O3 Mini Global
OpenAI logo

O3 Mini Global

o3-mini-globalllms.txt
OpenAI

Pricing

  • Input Tokens: $1.100 /M tokens
  • Output Tokens: $4.400 /M tokens
  • Cache Read: $0.550 /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-mini-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 Mini Global cost?

    On AIHubMix, O3 Mini Global costs $1.1 per million input tokens and $4.4 per million output tokens. Cached input reads are billed at $0.55 per million tokens.