openai
OpenAI: gpt 4o minimodels/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.
CurrencyUSD
Input0.15
Output0.60
Context window128K

Generate API Key Generate your API Key to securely access Indox Router's AI models. Integrate with OpenAI-compatible tools, run queries, and build powerful AI applications — all with a single secure key.
python
typescript
CURL

from indoxrouter import Client
client = Client(api_key="[LOGIN TO GET API KEY]")

response = client.chat(
    messages: [{"role": "user", "content": ""}],
    model: "openai/gpt-4o-mini",
    max_tokens:  '' ,
    frequency_penalty:  '' ,
    presence_penalty:  '' ,
    temperature:  '' ,
    top_p:  '' ,
    stream:true

)
print("Response:", response["data"])