anthracite-org
Magnum v4 72B
This is a series of models designed to replicate the prose quality of the Claude 3 models, specifically Sonnet(https://openrouter.ai/anthropic/claude-3.5-sonnet) and Opus(https://openrouter.ai/anthropic/claude-3-opus). The model is fine-tuned on top of [Qwen2.5 72B](https://openrouter.ai/qwen/qwen-2.5-72b-instruct).
Context
33k tokens
Input / 1M tokens
$3
Output / 1M tokens
$5
Benchmark
—
Pricing
Input tokens$3 per 1M tokens
Output tokens$5 per 1M tokens
Technical details
Model IDanthracite-org/magnum-v4-72b
Context window33k tokens
Input modalitiestext
Output modalitiestext
TokenizerQwen
Max output tokens2,048
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: 'anthracite-org/magnum-v4-72b',
messages: [{ role: 'user', content: 'Hello!' }],
})