Gryphe: MythoMax 13B
gryphe/mythomax-l2-13b
Access MythoMax 13B from Gryphe using Puter.js AI API.
Get Started// npm install @heyputer/puter.js
import { puter } from '@heyputer/puter.js';
puter.ai.chat("Explain quantum computing in simple terms", {
model: "gryphe/mythomax-l2-13b"
}).then(response => {
document.body.innerHTML = response.message.content;
});
<html>
<body>
<script src="https://js.puter.com/v2/"></script>
<script>
puter.ai.chat("Explain quantum computing in simple terms", {
model: "gryphe/mythomax-l2-13b"
}).then(response => {
document.body.innerHTML = response.message.content;
});
</script>
</body>
</html>
# pip install openai
from openai import OpenAI
client = OpenAI(
base_url="https://api.puter.com/puterai/openai/v1/",
api_key="YOUR_PUTER_AUTH_TOKEN",
)
response = client.chat.completions.create(
model="gryphe/mythomax-l2-13b",
messages=[
{"role": "user", "content": "Explain quantum computing in simple terms"}
],
)
print(response.choices[0].message.content)
curl https://api.puter.com/puterai/openai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_PUTER_AUTH_TOKEN" \
-d '{
"model": "gryphe/mythomax-l2-13b",
"messages": [
{"role": "user", "content": "Explain quantum computing in simple terms"}
]
}'
Model Card
MythoMax L2 13B is a 13-billion-parameter language model created by Gryphe, built on Llama 2 and specialized for creative writing, storytelling, and character roleplay.
Rather than being trained from scratch, it was produced by merging two models — MythoLogic-L2 and Huginn — using an experimental tensor-level blending technique. MythoLogic-L2 contributes strong comprehension at the input layers while Huginn drives expressive writing at the output layers, resulting in unusually coherent long-form narrative generation for its size.
The model excels at maintaining consistent character voice across extended exchanges, producing dialogue and scene descriptions with natural pacing. It's a strong fit for interactive fiction, RPG dialogue generation, and narrative branching where frontier-model API costs would be prohibitive. Context length is 4,096 tokens. Not recommended for reasoning, coding, or factual tasks.
Context Window 4K
tokens
Max Output 4K
tokens
Input Cost $0.06
per million tokens
Output Cost $0.06
per million tokens
Release Date Aug 10, 2023
Model Playground
Try MythoMax 13B instantly in your browser.
This playground uses the Puter.js AI API — no API keys or setup required.
Frequently Asked Questions
You can access MythoMax 13B by Gryphe through Puter.js AI API. Include the library in your web app or Node.js project and start making calls with just a few lines of JavaScript — no backend and no configuration required. You can also use it with Python or cURL via Puter's OpenAI-compatible API.
Yes, it is free if you're using it through Puter.js. With the User-Pays Model, you can add MythoMax 13B to your app at no cost — your users pay for their own AI usage directly, making it completely free for you as a developer.
| Price per 1M tokens | |
|---|---|
| Input | $0.06 |
| Output | $0.06 |
MythoMax 13B was created by Gryphe and released on Aug 10, 2023.
MythoMax 13B supports a context window of 4K tokens. For reference, that is roughly equivalent to 8 pages of text.
MythoMax 13B can generate up to 4K tokens in a single response.
Yes — the MythoMax 13B API works with any JavaScript framework, Node.js, or plain HTML through Puter.js. Just include the library and start building. See the documentation for more details.
Get started with Puter.js
Add MythoMax 13B to your app without worrying about API keys or setup.
Read the Docs View Tutorials