orangejuicesmith/Mythos-Nano
Mythos-nano tool-calling is coming, but check out Merlin-Agent!
https://huggingface.co/Merlin-Research/Merlin-Agent

</a>
Disclaimer: This is not an official release by Anthropic. Mythos-nano is an independent open model project.
Mythos-nano

<blockquote style="border-left: 4px solid #ff6b6b; background-color: #fff5f5; padding: 10px 15px; margin: 10px 0; color: #cc3333;"> <span style="font-weight: bold;">๐จ </span> This model was not trained on tool-calling or agent-based programming data. We therefore do not recommend using it for tasks that involve function calling, API orchestration, or autonomous coding agents. For programming tasks, we recommend using this model on competitive programming problems (e.g., LeetCode-style) - Weibo Lab. </blockquote>
<blockquote style="border-left: 4px solid #ff6b6b; background-color: #fff5f5; padding: 10px 15px; margin: 10px 0; color: #cc3333;"> <span style="font-weight: bold;">โ ๏ธ </span> Abliterated (uncensored): the refusal direction has been removed, so this model will not decline requests a safety-tuned model normally would. Safety guardrails are reduced โ use responsibly and at your own risk; you are solely responsible for outputs and legal compliance. </blockquote>
๐ Benchmarks

Full comparison (mathematics ยท coding ยท knowledge ยท instruction)
LeetCode contests (Python, pass-rate)
A 3B model placing within ~4 points of trillion-parameter systems on competition math and live code โ the core thesis: with verifiable feedback, small models reach frontier reasoning.
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
tok = AutoTokenizer.from_pretrained("squ11z1/Mythos-nano")
model = AutoModelForCausalLM.from_pretrained("squ11z1/Mythos-nano", dtype=torch.bfloat16, device_map="cuda")
msgs = [{"role": "user", "content": "Find all integer solutions of x^2 - y^2 = 12."}]
ids = tok.apply_chat_template(msgs, add_generation_prompt=True, return_tensors="pt").to("cuda")
print(tok.decode(model.generate(ids, max_new_tokens=2048, temperature=0.6)[0], skip_special_tokens=True))Recommended sampling: temperature 0.6โ1.0, up to 40960 output tokens for hard problems.
GGUF
mythos-nano-f16.gguf and mythos-nano-Q4_K_M.gguf are provided for llama.cpp / Ollama.
License
MIT.
