MythoMax 13B

API ID: gryphe/mythomax-l2-13b

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

About MythoMax 13B

MythoMax L2 13B is a popular community model optimized for creative writing and roleplay applications. Built on Llama 2 13B with specialized fine-tuning, it excels at generating engaging narratives, character dialogue, and creative content. The model demonstrates strong performance on storytelling tasks while maintaining coherent, contextually appropriate responses. MythoMax features efficient architecture that runs on consumer GPUs, making it accessible for local deployment. It's particularly popular in the creative AI community for interactive fiction, roleplay, and content generation. For developers building creative applications or seeking engaging conversational AI, MythoMax offers specialized capability for narrative tasks. It remains one of the most popular models for creative writing despite newer alternatives.

๐Ÿ“Š
Price Ranking
#604 lowest price among 1240 Chat models

Model Specifications

Context Length
8k
Max Output
8k
Release Date
2023-07-02
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.04
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$1.44
/month
1000 tickets/day, ~800 tokens each

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Alibaba Qwen Qwen2.5 Coder 7B Instruct
Input: $0.03
Output: $0.09
Context: 33k
Google Gemma 2 9B
Input: $0.03
Output: $0.09
Context: 8k
Nous Research DeepHermes 3 Mistral 24B Preview
Input: $0.02
Output: $0.10
Context: 33k
OpenAI gpt-oss-20b
Input: $0.02
Output: $0.10
Context: 131k

๐Ÿš€ Quick Start

Get started with MythoMax 13B 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="gryphe/mythomax-l2-13b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)