WizardLM-2 8x22B

Microsoft chattool_use

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
#734 lowest price among 950 Chat models

Model Specifications

Context Length
66k
Max Output
8k
Release Date
2024-04-16
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
$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 tool_use
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

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
DeepSeek DeepSeek V3.1 Terminus
Input: $0.21
Output: $0.79
Context: 164k

๐Ÿš€ 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)