Efficient reasoning model optimized for speed with high reasoning effort. Excels at math, coding, and logical reasoning tasks at lower latency and cost than full-size reasoning models. Uses internal chain-of-thought to solve complex problems step by step.
OpenAI
128k tokens
65,536 tokens
openai/o3-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/o3-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.
Affordable and efficient small model for fast, focused tasks. Great cost-to-performance ratio.
Advanced reasoning model rivaling frontier models at a fraction of the cost. Chain-of-thought by default.