MythoMax 13B

Other chattool_use

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

Model Specifications

Context Length
4k
Max Output
โ€”
Release Date
2023-07-02
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.04
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$1.44
/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
MythoMax 13B Current Free Free 4k 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

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
Google Gemma 3 4B
Input: $0.04
Output: $0.08
Context: 131k
Nous Research DeepHermes 3 Mistral 24B Preview
Input: $0.02
Output: $0.10
Context: 33k

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