WizardLM-2 8x22B

API ID: microsoft/wizardlm-2-8x22b

Input Price
$0.48
/1M tokens
Output Price
$0.48
/1M tokens

About WizardLM-2 8x22B

WizardLM 2 8x22B is Microsoft's instruction-tuned Mixture-of-Experts model, delivering exceptional performance on complex reasoning and coding tasks. Built on the Mixtral architecture with specialized fine-tuning, it achieves remarkable capability through efficient sparse activation. The model excels at following complex instructions, multi-step reasoning, and sophisticated code generation. WizardLM 2 8x22B demonstrates particularly strong performance on benchmarks requiring careful instruction following and nuanced responses. Its MoE architecture provides frontier-adjacent capability while maintaining reasonable inference costs. The model is valuable for applications requiring reliable instruction following and complex task completion. For developers seeking capable AI that excels at understanding and executing detailed instructions, WizardLM 2 8x22B offers specialized capability. It's particularly popular for automated workflows, complex content generation, and applications requiring precise instruction adherence.

๐Ÿ’ฐ
Price Ranking
#816 lowest price among 1240 Chat models

Model Specifications

Context Length
66k
Max Output
8k
Release Date
2024-04-16
Capabilities
chat
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
$0.36
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$11.52
/month
1000 tickets/day, ~800 tokens each

Microsoft Model Lineup

Compare all models from Microsoft to find the best fit

Model Input Output Context Capabilities
WizardLM-2 8x22B Current Free Free 66k chat
Phi-3 Medium 4K Instruct Free Free 4k chat
Phi-3 Medium 4K Instruct Free Free 4k chat
WizardLM-2 7B Free Free 32k chat
WizardLM-2 7B Free Free 32k chat
Phi 4 Multimodal Instruct Free Free 131k chat vision

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Meta Llama 4 Scout
Input: $0.25
Output: $0.70
Context: 1.3M
DeepSeek DeepSeek V3 0324
Input: $0.20
Output: $0.77
Context: 164k
Zhipu Ai GLM 4.5 Air
Input: $0.13
Output: $0.85
Context: 131k
Other LongCat Flash Chat
Input: $0.20
Output: $0.80
Context: 131k

๐Ÿš€ Quick Start

Get started with WizardLM-2 8x22B 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="microsoft/wizardlm-2-8x22b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)