minimaxVision
MiniMax: MiniMax M3
MiniMax-M3 is a multimodal foundation model from MiniMax. It supports text, image, and video inputs with text output, a 1M-token context window, and is suited for long-horizon agentic work, coding,...
Context
1M tokens
Input / 1M tokens
$0.30
Output / 1M tokens
$1.20
Benchmark
—
Pricing
Input tokens$0.30 per 1M tokens
Output tokens$1.20 per 1M tokens
Cache read$0.06 per 1M tokens
Technical details
Model IDminimax/minimax-m3
Context window1M tokens
Input modalitiestext, image, video
Output modalitiestext
TokenizerOther
Max output tokens512,000
Use with MegaBrain
import OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://getmegabrain.com/api/gateway/v1',
apiKey: process.env.MEGABRAIN_API_KEY,
})
const response = await client.chat.completions.create({
model: 'minimax/minimax-m3',
messages: [{ role: 'user', content: 'Hello!' }],
})