Models / Mistral Large
Mistral Large
proprietaryMistral's flagship model with 128K context. Strong multilingual capabilities and function calling.
mistral/mistral-largeContext Window
131K
Max Output
16K
Providers
1
Released
2025-03
Capabilities
chatcodereasoningtoolsfunction_callingstreamingjson_mode
Pricing by Provider
| Provider | Input $/1M | Output $/1M | Latency p50 | Latency p95 | Status |
|---|---|---|---|---|---|
| mistral | $2.00 | $6.00 | 350ms | 1000ms |
Quick Start
Python
import magicrouter
mr = magicrouter.Client(
provider_keys={"mistral": "your-api-key"}
)
response = mr.chat(
"mistral/mistral-large",
"Your prompt here"
)
print(response.choices[0].message.content)TypeScript
import { MagicRouter } from "magicrouter";
const mr = new MagicRouter({
providerKeys: { mistral: "your-api-key" }
});
const response = await mr.chat({
model: "mistral/mistral-large",
messages: [{ role: "user", content: "Your prompt here" }]
});
console.log(response.choices[0].message.content);cURL
curl https://api.mistral.ai/v1/chat/completions \
-H "Authorization: Bearer your-api-key" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral-large-latest",
"messages": [{"role": "user", "content": "Your prompt here"}]
}'