Back to Models
o4-mini-2025-04-16
openai/o4-mini-2025-04-16
OpenAI
Chat
Description
o4-mini-2025-04-16 by OpenAI. This model supports chat capabilities.
Specifications
Pricing
- Input Cost:
- $0.2200/100K tokens
- Output Cost:
- $0.8800/100K tokens
Usage Example
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.yourproxy.com/v1",
apiKey: process.env.PROXY_KEY,
});
const completion = await client.chat.completions.create({
model: "openai/o4-mini-2025-04-16",
messages: [{ role: "user", content: "Hello!" }],
});