Skip to main content

Mistral Large

Approved Data Classifications

Description

Mistral Large is an advanced language model developed by Mistral AI, recognized for its robust reasoning capabilities and designed to tackle complex multilingual tasks. Launched in February 2024, Mistral Large features a context window of 32,000 tokens, enabling it to retrieve and generate precise information from extensive documents. The model is fluent in multiple languages, including English, French, Spanish, German, and Italian, showcasing a nuanced understanding of grammar and cultural context. With the incorporation of retrieval-augmented generation (RAG), Mistral Large can access external knowledge bases to enhance its comprehension and accuracy. It excels in instruction-following tasks and coding challenges, making it a powerful tool for developers looking to create applications that require high-level reasoning and language understanding across various domains.

Capabilities

ModelTraining DataInputOutputContext LengthCost (per 1 million tokens)
mistral-largeFebruary 2024TextText32,000$4.00/1M input
$12.00/1M output
info
  • 1M represents 1 Million Tokens
  • All prices listed are based on 1 Million Tokens

Availability

Cloud Provider

Usage

curl -X POST https://api.ai.it.ufl.edu/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <API_TOKEN>" \
-d '{
"model": "mistral-large",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Write a haiku about an Alligator."
}
]
}'