Mixtral 8x22B Instruct

Mistral chattool_use

API ID: mistralai/mixtral-8x22b-instruct

Input Price
$2.00
/1M tokens
Output Price
$6.00
/1M tokens

About Mixtral 8x22B Instruct

Mixtral 8x22B is Mistral AI's largest Mixture-of-Experts model, pushing open-source AI capability to new heights. With 8 expert networks of 22 billion parameters each, it delivers performance approaching GPT-4 while maintaining the efficiency benefits of sparse activation. The model features a 64K context window and excels at complex reasoning, sophisticated coding, and nuanced language tasks. Mixtral 8x22B demonstrates particularly strong performance on mathematical reasoning and code generation benchmarks. Its open weights enable enterprise deployment without API costs, though it requires substantial compute resources. The model supports function calling and can be fine-tuned for specific domains. For organizations with the infrastructure to run large models and seeking maximum open-source capability, Mixtral 8x22B represents the frontier of openly available AI. It's particularly valuable for research institutions, enterprises with data sovereignty requirements, and developers building differentiated AI products.

๐Ÿ’ฐ
Price Ranking
#878 lowest price among 950 Chat models

Model Specifications

Context Length
66k
Max Output
โ€”
Release Date
2024-04-17
Capabilities
chat tool_use
Input Modalities
text
Output Modalities
text

Best For

  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$2.70
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$84.00
/month
1000 tickets/day, ~800 tokens each

Mistral Model Lineup

Compare all models from Mistral to find the best fit

Model Input Output Context Capabilities
Mixtral 8x22B Instruct Current Free Free 66k chat tool_use
Pixtral 12B Free Free 4k chat vision
Mistral 7B Instruct v0.3 Free Free 33k chat
Mistral 7B Instruct Free Free 33k chat
Mixtral 8x22B (base) Free Free 66k chat
Mixtral 8x22B (base) Free Free 66k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Other Magnum v4 72B
Input: $3.00
Output: $5.00
Context: 16k
Meta Llama 3.1 405B (base)
Input: $4.00
Output: $4.00
Context: 33k
Meta Llama 3.1 405B Instruct
Input: $4.00
Output: $4.00
Context: 131k
OpenAI Codex Mini
Input: $1.50
Output: $6.00
Context: 200k

๐Ÿš€ Quick Start

Get started with Mixtral 8x22B Instruct API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="mistralai/mixtral-8x22b-instruct",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)