Back to Models
Mistral Small (24B) Instruct 25.01
mistralai/mistral-small-24b-instruct-2501
Mistralai
Chat
Description
Mistral Small (24B) Instruct 25.01 by Mistralai. This model supports chat capabilities. Variant: Instruct.
Specifications
- Context Length:
- 32768
- Variant:
- Instruct
- Parameters:
- 24B
Pricing
- Input Cost:
- $0.0200/100K tokens
- Output Cost:
- $0.0600/100K tokens
Usage Example
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.yourproxy.com/v1",
apiKey: process.env.PROXY_KEY,
});
const completion = await client.chat.completions.create({
model: "mistralai/mistral-small-24b-instruct-2501",
messages: [{ role: "user", content: "Hello!" }],
});