Mistral AI's balanced model offering strong multilingual performance with excellent price-performance ratio. Optimized for production workloads requiring reliable quality across European and global languages.
128K tokens
3
available
Cheapest
NVIDIA NIM
$0.00/1M tokens
Deep Infra, Mistral AI, NVIDIA NIM
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: FreeOut: Free | 100 RPM / 500K TPM | us-east-1us-west-2global | Healthy | 0ms | |
In: $0.40Out: $1.20 | 600 RPM / 1.0M TPM | us-east-1eu-west-1 | Healthy | 0ms | |
In: $2.00Out: $6.00 | 300 RPM / 500K TPM | eu-west-1us-east-1global | Healthy | 0ms |
Use this model via NVIDIA NIM with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.nvidia.com/v1",
apiKey: process.env.NVIDIA_API_KEY,
});
const response = await client.chat.completions.create({
model: "mistralai/mistral-medium-3.5-128b",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using NVIDIA NIM API • OpenAI-compatible SDK