Affordable and efficient small model for fast, focused tasks. Provides a great cost-to-performance ratio for applications that don't require the full capabilities of GPT-4o. Perfect for high-volume workloads, classification, extraction, and simple generation.
OpenAI
128k tokens
16,384 tokens
openai/gpt-4o-mini
Drop-in compatible with any OpenAI client library.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.deployai.dev/v1",
apiKey: process.env.DEPLOYAI_API_KEY,
});
const completion = await client.chat.completions.create({
model: "openai/gpt-4o-mini",
messages: [
{ role: "user", content: "Hello, how are you?" }
],
});
console.log(completion.choices[0].message.content);Most capable multimodal model. Excels at complex reasoning, coding, creative writing, and vision tasks.
Efficient reasoning model optimized for speed. High reasoning effort with lower latency and cost.
Balanced model with strong reasoning and nuanced understanding. Excellent for analysis and long documents.