microsoft
WizardLM-2 8x22B
WizardLM-2 8x22B is Microsoft AI's most advanced Wizard model. It demonstrates highly competitive performance compared to leading proprietary models, and it consistently outperforms all existing state-of-the-art opensource models. It is...
Context
66k tokens
Input / 1M tokens
$0.62
Output / 1M tokens
$0.62
Benchmark
—
Pricing
Input tokens$0.62 per 1M tokens
Output tokens$0.62 per 1M tokens
Technical details
Model IDmicrosoft/wizardlm-2-8x22b
Context window66k tokens
Input modalitiestext
Output modalitiestext
TokenizerMistral
Max output tokens8,000
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: 'microsoft/wizardlm-2-8x22b',
messages: [{ role: 'user', content: 'Hello!' }],
})