GPT 4o Mini Global
OpenAI logo

GPT 4o Mini Global

gpt-4o-mini-globalllms.txt
OpenAI

Pricing

  • Input Tokens: $0.150 /M tokens
  • Output Tokens: $0.600 /M tokens
  • Cache Read: $0.075 /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="gpt-4o-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 GPT 4o Mini Global cost?

    On AIHubMix, GPT 4o Mini Global costs $0.15 per million input tokens and $0.6 per million output tokens. Cached input reads are billed at $0.075 per million tokens.