About Mistral Large 2
Mistral Large 2 is an LLM with 123 billion parameters, designed for high-throughput and long-context applications. It excels in reasoning, coding, and instruction following.
| Metric | Value |
|---|---|
| Parameter Count | 123 billion |
| Mixture of Experts | No |
| Context Length | 128,000 tokens |
| Multilingual | Yes |
| Quantized* | No |
*Quantization is specific to the inference provider and the model may be offered with different quantization levels by other providers.
Ready to build with Mistral Large 2?
Try Mistral Large 2 in the Workbench to prompt it, compare outputs, and iterate on prompts without writing any code. When you're ready to ship, call the same model from our API and build your own apps on top of it.
curl -sSf -X POST https://hub.oxen.ai/api/ai/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OXEN_API_KEY" \
-d '{
"model": "mistral-large-2407",
"messages": [
{
"role": "user",
"content": "Try sending a message."
}
]
}'API endpoint
See the API reference for request and response formats.
POST
https://hub.oxen.ai/api/ai/chat/completions