MiniMax's frontier open-weight model with 1M-token context window, native multimodality (text, image, video), and strong coding capabilities. Built on MiniMax Sparse Attention (MSA) architecture, achieving 59% on SWE-Bench Pro with significantly improved efficiency at long context.
1.0M tokens
3
Kullanılabilir
En ucuz
OpenRouter
$1.50/1M tokens
MiniMax, OpenRouter, SiliconFlow
Toplam maliyete göre sıralanır (1M token başına giriş + çıkış). Sağlayıcı ayrıntılarını görmek için bir satır seçin.
| Sağlayıcı | Fiyat (1M başına) | Hız sınırları | Bölgeler | Durum | Gecikme |
|---|---|---|---|---|---|
Giriş: $0.30Çıkış: $1.20 | 20 RPM / 1.0M TPM | us-east-1 | Sağlıklı | 0ms | |
Giriş: $0.60Çıkış: $2.40 | 300 RPM / 1.0M TPM | us-east-1global | Sağlıklı | 0ms | |
Giriş: $0.60Çıkış: $2.40 | 300 RPM / 1.0M TPM | ap-east-1us-west-2global | Sağlıklı | 0ms |
Bu modeli OpenRouter üzerinden OpenAI uyumlu bir SDK ile kullanın.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.OPENROUTER_API_KEY,
});
const response = await client.chat.completions.create({
model: "minimax/minimax-m3",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);OpenRouter API kullanılıyor · OpenAI uyumlu SDK