Magnum v4 72B

Other chattool_use

API ID: anthracite-org/magnum-v4-72b

Input Price
$3.00
/1M tokens
Output Price
$5.00
/1M tokens

About Magnum v4 72B

Magnum is a community-developed large model series, known for strong creative writing and roleplay capabilities. The models excel at generating engaging narratives, character dialogue, and creative content. Magnum variants are available in various sizes including 72B parameter versions. The series is popular in the creative AI community for interactive fiction and storytelling applications. For developers building creative applications requiring engaging content generation, Magnum offers specialized narrative capability.

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

Model Specifications

Context Length
16k
Max Output
2k
Release Date
2024-10-22
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.85
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$90.00
/month
1000 tickets/day, ~800 tokens each

Other Model Lineup

Compare all models from Other to find the best fit

Model Input Output Context Capabilities
Magnum v4 72B Current Free Free 16k chat tool_use
Riverflow V2 Max Preview Free Free 8k chat vision image_gen
Riverflow V2 Standard Preview Free Free 8k chat vision image_gen
Riverflow V2 Fast Preview Free Free 8k chat vision image_gen
AFM 4.5B Free Free 66k chat
AFM 4.5B Free Free 66k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Meta Llama 3.1 405B (base)
Input: $4.00
Output: $4.00
Context: 33k
Mistral Mixtral 8x22B Instruct
Input: $2.00
Output: $6.00
Context: 66k
Mistral Mistral Large 2411
Input: $2.00
Output: $6.00
Context: 131k
Mistral Mistral Large 2407
Input: $2.00
Output: $6.00
Context: 131k

๐Ÿš€ Quick Start

Get started with Magnum v4 72B 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="anthracite-org/magnum-v4-72b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)