minimaxVision
MiniMax: MiniMax-01
MiniMax-01 is a combines MiniMax-Text-01 for text generation and MiniMax-VL-01 for image understanding. It has 456 billion parameters, with 45.9 billion parameters activated per inference, and can handle a context...
Context
1M tokens
Input / 1M tokens
$0.20
Output / 1M tokens
$1.10
Benchmark
—
Pricing
Input tokens$0.20 per 1M tokens
Output tokens$1.10 per 1M tokens
Technical details
Model IDminimax/minimax-01
Context window1M tokens
Input modalitiestext, image
Output modalitiestext
TokenizerOther
Max output tokens1,000,192
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-01',
messages: [{ role: 'user', content: 'Hello!' }],
})