mistralai
Mistral: Saba
Mistral Saba is a 24B-parameter language model specifically designed for the Middle East and South Asia, delivering accurate and contextually relevant responses while maintaining efficient performance. Trained on curated regional...
Context
33k tokens
Input / 1M tokens
$0.20
Output / 1M tokens
$0.60
Benchmark
—
Pricing
Input tokens$0.20 per 1M tokens
Output tokens$0.60 per 1M tokens
Cache read$0.02 per 1M tokens
Technical details
Model IDmistralai/mistral-saba
Context window33k tokens
Input modalitiestext, file
Output modalitiestext
TokenizerMistral
Use with MegaBrain
import OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://getmegabrain.com/api/gateway/v1',
apiKey: process.env.MEGABRAIN_API_KEY,
})
const response = await client.chat.completions.create({
model: 'mistralai/mistral-saba',
messages: [{ role: 'user', content: 'Hello!' }],
})