openai

OpenAI: GPT 4o mini

models/GPT-4o-mini

GPT 4o mini is OpenAI's newest model after GPT 4 Omni, supporting both text and image inputs with text outputs. As their most advanced small model, it is many multiples more affordable than other recent frontier models, and more than 60% cheaper than GPT 3.5 Turbo. It maintains SOTA intelligence, while being significantly more cost effective. GPT 4o mini achieves an 82% score on MMLU and presently ranks higher than GPT 4 on chat preferences common leaderboards. Check out the launch announcement to learn more.
Currency$USD
Input$0.15
Output$0.60
Context window128K

Generate API Key Generate your API Key to securely access IndoxHub's AI models. Integrate with OpenAI-compatible tools, run queries, and build powerful AI applications — all with a single secure key.
Endpoint
POSThttps://api.indoxhub.com/api/v1/chat/completions
Configopenai/gpt-4o-mini
from indoxhub import Client
 
# Initialize the client
with Client(api_key="[LOGIN TO GET API KEY]") as client:
    # Generate a chat completion
    response = client.chat(
        messages=[{"role":"system","content":"You are a helpful assistant."},{"role":"user","content":"What is machine learning and why is it important?"}],
        model="openai/gpt-4o-mini",
        temperature:"0.7"
    )
 
    # Print the response
    print(response["data"])