Skip to main content

Mistral Small

Approved Data Classifications

Description

Mistral Small is Mistral AI's compact yet powerful language model, designed for efficiency and optimized for low-latency applications. Launched in May 2024, this model stands out as the smallest proprietary offering from Mistral, outperforming larger models like Mixtral 8x7B while maintaining rapid response times. With a context window of up to 32,000 tokens, Mistral Small excels in a variety of language-based tasks, including code generation and multilingual processing, supporting languages such as French, German, Spanish, and Italian. Its architecture is specifically tailored for high-volume workloads, making it an ideal choice for developers seeking to integrate AI capabilities into applications that demand quick and reliable performance. Additionally, Mistral Small incorporates built-in safety features to ensure responsible usage, further enhancing its appeal for deployment in real-world scenarios.

Capabilities

ModelTraining DataInputOutputContext LengthCost (per 1 million tokens)
mistral-smallFebruary 2024TextText32,000$1.00/1M input
$3.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-small",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Write a haiku about an Alligator."
}
]
}'